nixfiles/hosts/artemis/ssh.nix
2026-04-22 21:28:19 +01:00

11 lines
194 B
Nix

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