nixos/modules/shell/core.nix
2025-04-22 00:30:37 +02:00

45 lines
552 B
Nix

{pkgs, ...}: {
config = {
environment.enableAllTerminfo = true;
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
btop
lshw
# Archive
zip
unzip
gzip
xz
];
};
}