mynixos-config/users/config/utils.nix
2024-09-07 01:39:12 +02:00

42 lines
508 B
Nix

{
pkgs,
lib,
minimal,
...
}:
lib.optionalAttrs (!minimal) {
home = {
packages = with pkgs; [
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;
};
}