fix concat

This commit is contained in:
NullBite 2024-02-09 17:50:08 +01:00
parent 2860b842e3
commit 456b0d083f
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

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