CrOS/modules/security/ssh.nix
2025-01-20 10:00:03 -05:00

9 lines
143 B
Nix

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