25 lines
261 B
Nix
25 lines
261 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
nano
|
|
curl
|
|
wget
|
|
jq
|
|
ripgrep
|
|
fd
|
|
htop
|
|
dig
|
|
pv
|
|
zstd
|
|
whois
|
|
dnsutils
|
|
nixpkgs-fmt
|
|
neofetch
|
|
inxi
|
|
file
|
|
rsync
|
|
tmux
|
|
socat
|
|
];
|
|
}
|