# ========================================== # SSH SERVER CONFIGURATION # ========================================== { config, pkgs, ... }: { services.openssh = { enable = true; settings = { PermitRootLogin = "no"; PasswordAuthentication = true; # Change to false once you add SSH keys }; }; }