nixos/modules/base/programs.nix
2024-11-13 02:15:59 +01:00

39 lines
555 B
Nix

{pkgs, ...}: {
# NixOS default packages:
# https://github.com/NixOS/nixpkgs/blob/nixos-unstable/nixos/modules/config/system-path.nix
environment.systemPackages = with pkgs; [
bandwhich
bat
binutils
dnsutils
fd
file
fzf
git
htop
iputils
jq
lsof
mtr
ncdu
ntp
openssl
pciutils
progress
python3
python311
python312
socat
sqlite-interactive
tcpdump
tmux
traceroute
tree
unzip
usbutils
wget
whois
wireguard-tools
yq
];
}