9 lines
169 B
Nix
9 lines
169 B
Nix
{ lib, ... }: {
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PermitRootLogin = lib.mkForce "no";
|
|
PasswordAuthentication = false;
|
|
};
|
|
};
|
|
}
|