Files
nixos-configs/modules/application-groups/system-utilities-cluster.nix
2025-12-07 20:45:18 -08:00

28 lines
359 B
Nix

{ config, pkgs, ... }:
{
services.glances.enable = true;
services.openssh.enable = true;
environment.systemPackages = with pkgs; [
btop
dnsutils
git
htop
iftop
iotop
killall
kitty
ncdu
networkmanager
nmap
nvtopPackages.full
pciutils
unzip
usbutils
util-linux
wget
firefox
];
}