add pdf latex toolkit

This commit is contained in:
2026-01-26 20:33:31 +01:00
parent cb39f08b7d
commit 89181a9c07
4 changed files with 35 additions and 5 deletions

View File

@@ -44,7 +44,7 @@
ffmpeg
];
home.sessionPath = {
#home.sessionPath = {
#"$PNPM_HOME:${config.home.homeDirectory}/Android/Sdk/cmdline-tools/latest/bin:${config.home.homeDirectory}/Android/Sdk/platform-tools";
};
#};
}

View File

@@ -80,4 +80,7 @@ lib.mkIf cfg.enable {
flash-stm = "cargo flash --chip";
embed = "cargo embed";
};
programs.direnv.enable = true;
programs.direnv.nix-direnv.enable = true;
}

View File

@@ -84,8 +84,8 @@ lib.mkIf cfg.enable {
"history"
"direnv"
"node"
"zsh-autosuggestions"
"zsh-syntax-highlighting"
#"zsh-autosuggestions"
#"zsh-syntax-highlighting"
"docker"
"rust"
];

View File

@@ -1,5 +1,30 @@
{ config, pkgs, ... }:
let
tex = pkgs.texlive.withPackages (ps: with ps; [
scheme-basic
babel-german
hyphen-german
geometry
hyperref
xcolor
xurl
enumitem
fancyhdr
titlesec
tocloft
amsmath
listings
graphics
float
caption
booktabs
pdflscape
adjustbox
setspace
latexmk
]);
in
{
imports = [ ../../home/_home.nix ];
@@ -22,7 +47,9 @@
#programs.gnome-terminal.enable = true;
# Optional: apps for GNOME desktop
home.packages = with pkgs; [
home.packages = [
tex
#gnome.gnome-tweaks
#gnome.dconf-editor
];