mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
46 lines
533 B
Nix
46 lines
533 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
|
|
btop
|
|
lshw
|
|
|
|
# Archive
|
|
zip
|
|
unzip
|
|
gzip
|
|
xz
|
|
|
|
# Nix
|
|
nurl
|
|
];
|
|
};
|
|
}
|