nixfiles/hosts/artemis/ssh.nix
Callum Leslie 3c48de49f6
finally on flake parts
just need to remove fup now
2024-09-05 09:50:37 +01:00

10 lines
192 B
Nix

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