mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-30 19:14:19 +00:00
27 lines
347 B
Nix
27 lines
347 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
|
|
];
|
|
}
|