25 lines
286 B
Nix
25 lines
286 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
|
|
tmux
|
|
|
|
fastfetch
|
|
btop
|
|
iotop
|
|
dool
|
|
ncdu
|
|
dig
|
|
wget
|
|
unzip
|
|
nettools
|
|
pciutils
|
|
|
|
iptables
|
|
openssl # Generate secure passwords with: $ openssl rand -base64 48
|
|
jq
|
|
];
|
|
}
|
|
|