13 lines
241 B
Nix
13 lines
241 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
services.openssh = {
|
||
|
startWhenNeeded = true;
|
||
|
settings = {
|
||
|
StreamLocalBindUnlink = true;
|
||
|
PasswordAuthentication = false;
|
||
|
KbdInteractiveAuthentication = false;
|
||
|
PermitRootLogin = "no";
|
||
|
};
|
||
|
};
|
||
|
}
|