Files
cnix/nixos/services/openssh.nix
2024-07-06 10:57:11 +02:00

10 lines
143 B
Nix

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