dotfiles/home/modules/utils.nix
2025-03-31 11:53:17 -07:00

37 lines
447 B
Nix

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