nixfiles/hosts/artemis/ssh.nix

10 lines
185 B
Nix

{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
KbdInteractiveAuthentication = true;
PermitRootLogin = "no";
};
};
}