{ pkgs, ... }: { services.openssh = { enable = true; settings = { passwordAuthentication = false; PermitRootLogin = "prohibit-password"; startWhenNeeded = true; }; ports = [ 2200 ]; }; }