Files
nixos-config/profiles/openssh.nix
2026-01-24 13:48:52 +00:00

10 lines
136 B
Nix

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