Files
dotfiles/home/modules/utils.nix
2026-01-12 16:45:02 -05:00

54 lines
741 B
Nix

{ pkgs, inputs, ... }: {
home.packages = with pkgs; [
# Nix specific utilities
manix
direnv
rippkgs
nix-tree
nix-init
patchelf
# Utilities
jq
yq
bc
gum
duf
cava
ncdu
file
dysk
wget
curl
btop
dive
dust
timer
p7zip
yt-dlp
ffmpeg
sshpass
httrack
ripgrep
openvpn
xclicker
pciutils
fastfetch
nvtopPackages.full
# Encryption Tools
#age
#cryfs
];
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
# Install comma
imports = [ inputs.nix-index-database.homeModules.nix-index ];
programs.nix-index-database.comma.enable = true;
}