From 92593c7d0ae4233ad2475027e5fa7f72d5b70bc9 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Tue, 31 Mar 2026 14:46:19 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20add=20initialPassword=20fallback=20for?= =?UTF-8?q?=20phantom-ship=20console=20login=20=F0=9F=94=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No password was set, locking out console access. initialPassword gives a known fallback until SSH key is installed and password is changed. --- nixos/hosts/phantom-ship.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/hosts/phantom-ship.nix b/nixos/hosts/phantom-ship.nix index 6d52cad..afa71f7 100644 --- a/nixos/hosts/phantom-ship.nix +++ b/nixos/hosts/phantom-ship.nix @@ -20,6 +20,7 @@ in users.users.danny = { isNormalUser = true; extraGroups = [ "wheel" ]; + initialPassword = "changeme"; # console fallback; change after first login }; # Key-only auth; no password or keyboard-interactive.