From 456b0d083f0c690bf0ced8ce17dcb04222e884ad Mon Sep 17 00:00:00 2001 From: NullBite Date: Fri, 9 Feb 2024 17:50:08 +0100 Subject: [PATCH] fix concat --- system/common/me.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/common/me.nix b/system/common/me.nix index 1c6ffdc..5e82c49 100644 --- a/system/common/me.nix +++ b/system/common/me.nix @@ -10,7 +10,7 @@ in config = lib.mkIf cfg.enable { users.users.nullbite = { isNormalUser = true; - extraGroups = [ "wheel" ] + lib.optional config.nixfiles.packageSets.fun.enable "input"; + extraGroups = [ "wheel" ] ++ lib.optional config.nixfiles.packageSets.fun.enable "input"; packages = with pkgs; [ keychain ];