split out a few files.

This commit is contained in:
Gabe Venberg 2024-03-21 14:49:08 -05:00
parent 2daf8eb0f9
commit 1ec7065449
4 changed files with 36 additions and 5 deletions

View file

@ -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 = {

9
nix/hugo.nix Normal file
View file

@ -0,0 +1,9 @@
{
config,
pkgs,
...
}: {
home.packages = with pkgs; [
hugo
];
}

12
nix/latex.nix Normal file
View file

@ -0,0 +1,12 @@
{
config,
pkgs,
...
}: {
home.packages = with pkgs; [
texliveMedium
];
home.shellAliases = {
pdfmk = "latexmk -lualatex -pvc";
};
}

12
nix/voice.nix Normal file
View file

@ -0,0 +1,12 @@
{
config,
pkgs,
...
}: {
home.shellAliases = {
say = "espeak -p 10 -s 150 -a 200";
};
home.packages = with pkgs; [
espeak
];
}