1
Fork 0
nixos-system-config/sets/meta/sysadmin.nix

12 lines
157 B
Nix
Raw Normal View History

2023-06-18 22:52:24 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
htop
wget
curl
];
services.openssh.enable = true;
}