CrOS/modules/security/ssh.nix
TheWanderingCrow 996f8f7db6 nebula test run
2025-01-29 10:50:50 -05:00

9 lines
158 B
Nix

{
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "prohibit-password";
PasswordAuthentication = false;
};
};
}