Files
nixos-config/hosts/tahani/openssh.nix
2025-12-20 21:55:07 +00:00

10 lines
151 B
Nix

{...}: {
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "prohibit-password";
PasswordAuthentication = false;
};
};
}