nixfiles/hosts/artemis/ssh.nix
Callum Leslie fdafb67215 finally on flake parts
just need to remove fup now
2024-09-05 11:07:23 +01:00

10 lines
192 B
Nix

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