From 2b8602125fde0e082a5934fee3d04e58a31511e1 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 18 Aug 2024 16:59:55 -0400 Subject: [PATCH] system: Set default phone password to 1234 --- modules/system.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system.nix b/modules/system.nix index 841cdc5e..05a9d4d8 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -155,7 +155,7 @@ in isNormalUser = true; uid = 1000; - password = mkIf (hashedPassword == null && !noRoot) username; + password = mkIf (hashedPassword == null && !noRoot) (if phone then "1234" else username); extraGroups = if noRoot then