Files
nixos-config/modules/networking/ssh.nix
2025-08-12 19:32:49 +00:00

10 lines
144 B
Nix

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