31 lines
390 B
Nix
31 lines
390 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
# Nix specific utilities
|
|
manix
|
|
direnv
|
|
nix-tree
|
|
|
|
# Utilities
|
|
jq
|
|
bc
|
|
file
|
|
wget
|
|
curl
|
|
btop
|
|
p7zip
|
|
yt-dlp
|
|
ffmpeg
|
|
sshpass
|
|
ripgrep
|
|
openvpn
|
|
pciutils
|
|
fastfetch
|
|
];
|
|
|
|
programs.direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
}
|