nixos/modules/shell/core.nix
Nickolaj Jepsen 638ef7093e update
2025-02-21 00:18:30 +01:00

45 lines
522 B
Nix

{pkgs, ...}: {
config = {
environment.systemPackages = with pkgs; [
# Man pages
man-pages
man-pages-posix
# Networking
curl
wget
whois
rsync
# Shell
tmux
fzf
# Files
file
findutils
which
tree
# Text processing
ripgrep
jq
gnugrep
gawk
gnused
# Monitoring
htop
lshw
# Archive
zip
unzip
gzip
xz
# Nix
nurl
];
};
}