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"];