From 5ace176f304c85a61dd79702061f1a37c417d93a Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 10 Feb 2025 19:55:31 +0000 Subject: [PATCH] switch lighthouse user to standard --- modules/users/lighthouse/user.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/users/lighthouse/user.nix b/modules/users/lighthouse/user.nix index 4db6503..1c43060 100644 --- a/modules/users/lighthouse/user.nix +++ b/modules/users/lighthouse/user.nix @@ -3,8 +3,9 @@ lib, config, ... -}: { - config.users.users.lighthouse = lib.mkIf config.user.lighthouse.enable { +}: +lib.mkIf config.user.lighthouse.enable { + config.users.users.lighthouse = { isNormalUser = true; initialPassword = "changeme"; extraGroups = ["wheel"];