11 lines
187 B
Nix
11 lines
187 B
Nix
|
{
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
passwordAuthentication = false;
|
||
|
kbdInteractiveAuthentication = false;
|
||
|
permitRootLogin = "no";
|
||
|
};
|
||
|
};
|
||
|
}
|