nixos/system/ssh.nix
2024-06-07 14:19:39 +02:00

9 lines
150 B
Nix

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