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