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

10 lines
146 B
Nix
Raw Normal View History

2024-01-04 21:51:15 +05:30
_: {
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
};
};
}