diff --git a/nix/home.nix b/nix/home.nix index ca8d8f1..30552d9 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -1,7 +1,6 @@ { config, pkgs, - helpers, ... }: { # Home Manager needs a bit of information about you and the paths it should @@ -15,10 +14,8 @@ zellij sshfs just - espeak fd sd - hugo scc tre-command diskonaut @@ -47,8 +44,6 @@ ]; home.shellAliases = { - say = "espeak -p 10 -s 150 -a 200"; - pdfmk = "latexmk -lualatex -pvc"; doc2pdf = "loffice --convert-to-pdf --headless *.docx"; sshmnt = "sshfs -o idmap=user,compression=no,reconnect,follow_symlinks,dir_cache=yes,ServerAliveInterval=15"; }; @@ -59,6 +54,9 @@ ./git.nix ./starship.nix ./nvim/nvim.nix + ./voice.nix + ./hugo.nix + ./latex.nix ]; programs = { diff --git a/nix/hugo.nix b/nix/hugo.nix new file mode 100644 index 0000000..2eade26 --- /dev/null +++ b/nix/hugo.nix @@ -0,0 +1,9 @@ +{ + config, + pkgs, + ... +}: { + home.packages = with pkgs; [ + hugo + ]; +} diff --git a/nix/latex.nix b/nix/latex.nix new file mode 100644 index 0000000..adf41c2 --- /dev/null +++ b/nix/latex.nix @@ -0,0 +1,12 @@ +{ + config, + pkgs, + ... +}: { + home.packages = with pkgs; [ + texliveMedium + ]; + home.shellAliases = { + pdfmk = "latexmk -lualatex -pvc"; + }; +} diff --git a/nix/voice.nix b/nix/voice.nix new file mode 100644 index 0000000..f3da870 --- /dev/null +++ b/nix/voice.nix @@ -0,0 +1,12 @@ +{ + config, + pkgs, + ... +}: { + home.shellAliases = { + say = "espeak -p 10 -s 150 -a 200"; + }; + home.packages = with pkgs; [ + espeak + ]; +}