configuration.nix/hosts/rico0/services/ssh.nix

9 lines
146 B
Nix

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