nixos/modules/base/programs.nix

43 lines
472 B
Nix
Raw Normal View History

2024-03-05 22:57:41 +01:00
{pkgs, ...}: {
2024-03-05 22:17:26 +01:00
environment.systemPackages = with pkgs; [
2024-05-15 13:30:53 +02:00
ascii
2024-03-05 22:17:26 +01:00
bat
black
clang
curl
dig
fd
file
fzf
gcc
git
gnumake
htop
inetutils
jq
magic-wormhole
2024-06-03 23:43:59 +02:00
mtr
ncdu
2024-03-05 22:17:26 +01:00
ntp
2024-06-03 23:43:59 +02:00
openssl
pciutils
2024-03-05 22:17:26 +01:00
progress
pwgen
python310
python311
python312
rsync
2024-06-15 02:26:33 +02:00
socat
2024-03-05 22:17:26 +01:00
sqlite
2024-06-03 23:43:59 +02:00
tcpdump
2024-03-05 22:17:26 +01:00
tmux
traceroute
tree
unzip
2024-06-03 23:43:59 +02:00
usbutils
2024-03-05 22:17:26 +01:00
wget
wireguard-tools
yq
];
}