Files
cnix/sys/srv/openssh/default.nix
2024-08-02 21:27:09 +02:00

10 lines
143 B
Nix

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