37 lines
447 B
Nix
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;
|
|
};
|
|
}
|