dotfiles/home/modules/utils.nix
2025-04-27 21:57:41 -07:00

40 lines
483 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
# Nix specific utilities
manix
direnv
rippkgs
nix-tree
# Utilities
jq
bc
file
wget
curl
btop
ouch
dive
dust
timer
p7zip
yt-dlp
ffmpeg
sshpass
ripgrep
openvpn
pciutils
fastfetch
# Encryption Tools
#age
#cryfs
];
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}