Files
nixos-configs/modules/application-groups/system-utilities-cluster.nix
2025-12-07 21:15:01 -08:00

27 lines
339 B
Nix

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