Files
cnix/system/srv/openssh/default.nix
2024-08-03 14:03:54 +02:00

10 lines
143 B
Nix

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