prevent ssh root login
All checks were successful
nix flake show / show-flake (push) Successful in 36s

This commit is contained in:
smayzy 2025-08-09 16:57:53 +02:00
parent ff32a25403
commit 46c9281a62

View File

@ -18,7 +18,7 @@ in
AllowUsers = null; AllowUsers = null;
UseDns = true; UseDns = true;
X11Forwarding = false; X11Forwarding = false;
PermitRootLogin = "no"; PermitRootLogin = "prohibit-password";
}; };
}; };
}; };