nixos/modules/shell/core.nix

46 lines
522 B
Nix
Raw Normal View History

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