13 lines
178 B
Nix
13 lines
178 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
PermitRootLogin = "no";
|
||
|
PasswordAuthentication = false;
|
||
|
};
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
}
|