From 0fb3a462ff576ab041f9f5a4262b94ef4329e334 Mon Sep 17 00:00:00 2001 From: Kalle Struik Date: Tue, 4 Feb 2025 02:54:01 +0100 Subject: [PATCH] Add default password to maintenance user for debugging. To be removed later --- systems/template/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/systems/template/configuration.nix b/systems/template/configuration.nix index 6854654..6a2498a 100644 --- a/systems/template/configuration.nix +++ b/systems/template/configuration.nix @@ -33,6 +33,7 @@ isNormalUser = true; group = "maintenance"; extraGroups = [ "wheel" ]; + password = "1234"; openssh.authorizedKeys.keyFiles = [ ../../authorized_keys ]; }; users.groups."maintenance" = { };