add pdf latex toolkit
This commit is contained in:
@@ -44,7 +44,7 @@
|
|||||||
ffmpeg
|
ffmpeg
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionPath = {
|
#home.sessionPath = {
|
||||||
#"$PNPM_HOME:${config.home.homeDirectory}/Android/Sdk/cmdline-tools/latest/bin:${config.home.homeDirectory}/Android/Sdk/platform-tools";
|
#"$PNPM_HOME:${config.home.homeDirectory}/Android/Sdk/cmdline-tools/latest/bin:${config.home.homeDirectory}/Android/Sdk/platform-tools";
|
||||||
};
|
#};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -80,4 +80,7 @@ lib.mkIf cfg.enable {
|
|||||||
flash-stm = "cargo flash --chip";
|
flash-stm = "cargo flash --chip";
|
||||||
embed = "cargo embed";
|
embed = "cargo embed";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.direnv.enable = true;
|
||||||
|
programs.direnv.nix-direnv.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -84,8 +84,8 @@ lib.mkIf cfg.enable {
|
|||||||
"history"
|
"history"
|
||||||
"direnv"
|
"direnv"
|
||||||
"node"
|
"node"
|
||||||
"zsh-autosuggestions"
|
#"zsh-autosuggestions"
|
||||||
"zsh-syntax-highlighting"
|
#"zsh-syntax-highlighting"
|
||||||
"docker"
|
"docker"
|
||||||
"rust"
|
"rust"
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -1,5 +1,30 @@
|
|||||||
{ config, pkgs, ... }:
|
{ 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 ];
|
imports = [ ../../home/_home.nix ];
|
||||||
|
|
||||||
@@ -22,7 +47,9 @@
|
|||||||
#programs.gnome-terminal.enable = true;
|
#programs.gnome-terminal.enable = true;
|
||||||
|
|
||||||
# Optional: apps for GNOME desktop
|
# Optional: apps for GNOME desktop
|
||||||
home.packages = with pkgs; [
|
home.packages = [
|
||||||
|
tex
|
||||||
|
|
||||||
#gnome.gnome-tweaks
|
#gnome.gnome-tweaks
|
||||||
#gnome.dconf-editor
|
#gnome.dconf-editor
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user