hackens-org-configurations/profiles/core-hackens/ssh-server.nix
2021-12-14 19:20:02 +01:00

8 lines
159 B
Nix

{ ... }:
{
# Enable the OpenSSH daemon.
services.openssh.enable = true;
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 22 ];
}