11 lines
198 B
Nix
11 lines
198 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
services.openssh.enable = true;
|
||
|
services.openssh.settings = {
|
||
|
PasswordAuthentication = false;
|
||
|
PermitRootLogin = "yes";
|
||
|
};
|
||
|
|
||
|
networking.firewall.allowedTCPPorts = [ 22 ];
|
||
|
}
|