ssh.nix: fix default port

This commit is contained in:
Charlie Root 2025-03-04 22:43:09 +01:00
commit 2941c335ae
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -11,7 +11,7 @@ in {
services.openssh = {
enable = true;
ports = [8997];
ports = [22];
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";