Files
cnix/nixos/services/openssh/default.nix
2024-07-29 20:08:44 +02:00

10 lines
143 B
Nix

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