forked from mirrors_public/oddlama_nix-config
refactor: split "real" modules and "config" modules
This commit is contained in:
parent
045f15239a
commit
cceae6c63c
60 changed files with 126 additions and 113 deletions
43
users/config/utils.nix
Normal file
43
users/config/utils.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
minimal,
|
||||
...
|
||||
}:
|
||||
lib.optionalAttrs (!minimal) {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
bandwhich
|
||||
btop
|
||||
delta
|
||||
fd
|
||||
file
|
||||
hexyl
|
||||
killall
|
||||
ncdu
|
||||
neofetch
|
||||
nvd
|
||||
rage
|
||||
rclone
|
||||
ripgrep
|
||||
rnr
|
||||
rsync
|
||||
sd
|
||||
tree
|
||||
unzip
|
||||
zip
|
||||
wget
|
||||
usbutils
|
||||
pciutils
|
||||
];
|
||||
};
|
||||
|
||||
programs = {
|
||||
bat = {
|
||||
enable = true;
|
||||
config.theme = "TwoDark";
|
||||
};
|
||||
fzf.enable = true;
|
||||
gpg.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue