Files
cnix/nixos/services/openssh/default.nix
2024-07-22 10:45:20 +02:00

10 lines
143 B
Nix

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