13 lines
169 B
Nix
Executable file
13 lines
169 B
Nix
Executable file
{ ...
|
|
}:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
PermitRootLogin = "prohibit-password";
|
|
PasswordAuthentication = false;
|
|
};
|
|
};
|
|
}
|