split out a few files.
This commit is contained in:
parent
2daf8eb0f9
commit
1ec7065449
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
helpers,
|
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
|
@ -15,10 +14,8 @@
|
||||||
zellij
|
zellij
|
||||||
sshfs
|
sshfs
|
||||||
just
|
just
|
||||||
espeak
|
|
||||||
fd
|
fd
|
||||||
sd
|
sd
|
||||||
hugo
|
|
||||||
scc
|
scc
|
||||||
tre-command
|
tre-command
|
||||||
diskonaut
|
diskonaut
|
||||||
|
@ -47,8 +44,6 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home.shellAliases = {
|
home.shellAliases = {
|
||||||
say = "espeak -p 10 -s 150 -a 200";
|
|
||||||
pdfmk = "latexmk -lualatex -pvc";
|
|
||||||
doc2pdf = "loffice --convert-to-pdf --headless *.docx";
|
doc2pdf = "loffice --convert-to-pdf --headless *.docx";
|
||||||
sshmnt = "sshfs -o idmap=user,compression=no,reconnect,follow_symlinks,dir_cache=yes,ServerAliveInterval=15";
|
sshmnt = "sshfs -o idmap=user,compression=no,reconnect,follow_symlinks,dir_cache=yes,ServerAliveInterval=15";
|
||||||
};
|
};
|
||||||
|
@ -59,6 +54,9 @@
|
||||||
./git.nix
|
./git.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./nvim/nvim.nix
|
./nvim/nvim.nix
|
||||||
|
./voice.nix
|
||||||
|
./hugo.nix
|
||||||
|
./latex.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
9
nix/hugo.nix
Normal file
9
nix/hugo.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
hugo
|
||||||
|
];
|
||||||
|
}
|
12
nix/latex.nix
Normal file
12
nix/latex.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
texliveMedium
|
||||||
|
];
|
||||||
|
home.shellAliases = {
|
||||||
|
pdfmk = "latexmk -lualatex -pvc";
|
||||||
|
};
|
||||||
|
}
|
12
nix/voice.nix
Normal file
12
nix/voice.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.shellAliases = {
|
||||||
|
say = "espeak -p 10 -s 150 -a 200";
|
||||||
|
};
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
espeak
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue