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

9 lines
143 B
Nix

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