Files
cnix/nixos/srv/openssh/default.nix
cnst c08012466e ??
2024-08-02 18:48:27 +02:00

10 lines
143 B
Nix

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