nixos/parts/modules/shell/core.nix
2025-02-18 20:17:57 +01:00

46 lines
534 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
comma
nurl
];
};
}