mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
ref(nix): extraUtils option
This commit is contained in:
parent
e0c41a8804
commit
453d222600
5 changed files with 33 additions and 31 deletions
|
|
@ -2,6 +2,7 @@
|
|||
pkgs,
|
||||
lib,
|
||||
enableCmus,
|
||||
extraUtils,
|
||||
...
|
||||
}: {
|
||||
home = {
|
||||
|
|
@ -47,22 +48,34 @@
|
|||
gpg.enable = true;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# shell and script dependencies
|
||||
figlet
|
||||
gnused
|
||||
stow
|
||||
fd
|
||||
vivid
|
||||
gcc
|
||||
home.packages = with pkgs;
|
||||
[
|
||||
# shell and script dependencies
|
||||
figlet
|
||||
gnused
|
||||
stow
|
||||
fd
|
||||
vivid
|
||||
gcc
|
||||
rsync
|
||||
|
||||
# nix
|
||||
alejandra
|
||||
# nix
|
||||
alejandra
|
||||
|
||||
# utils
|
||||
tree
|
||||
rsync
|
||||
tldr
|
||||
irssi
|
||||
];
|
||||
# utils
|
||||
tree
|
||||
tldr
|
||||
irssi
|
||||
]
|
||||
++ (
|
||||
if extraUtils
|
||||
then [
|
||||
hyperfine
|
||||
watchexec
|
||||
tea
|
||||
tokei
|
||||
gnumake
|
||||
]
|
||||
else []
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue