fix(uconsole): resolve conflicting SSH options + properly override nixos-uconsole's nixos-raspberrypi input

- mkForce on PermitRootLogin and PasswordAuthentication
- nixos-uconsole.inputs.nixos-raspberrypi follows our fork
This commit is contained in:
2026-06-12 16:43:33 -04:00
parent 5ee644e9dd
commit 16acc6a153
4 changed files with 149 additions and 2 deletions

View File

@@ -12,8 +12,8 @@
# ============================================================
services.openssh = {
enable = true;
settings.PermitRootLogin = "prohibit-password";
settings.PasswordAuthentication = false;
settings.PermitRootLogin = lib.mkForce "prohibit-password";
settings.PasswordAuthentication = lib.mkForce false;
};
users.users.root = {