Add jitsi to allowed pkgs

This commit is contained in:
DashieTM 2024-12-22 15:00:48 +01:00
parent 9cef7c614b
commit 86238b157c
3 changed files with 31 additions and 21 deletions

View file

@ -2,6 +2,7 @@
inputs,
pkgs,
self,
stable,
lib,
...
}:
@ -68,7 +69,6 @@
},
additionalInputs ? { },
overridePkgs ? false,
pkgOverrides ? pkgs,
...
}:
builtins.listToAttrs (
@ -90,7 +90,8 @@
additionalHomeConfig
root
;
pkgs = if overridePkgs then pkgs else pkgOverrides;
pkgs = if overridePkgs then pkgs else stable;
alternativePkgs = if overridePkgs then stable else pkgs;
hostName = name;
homeMods = mods.home;
additionalHomeMods = additionalMods.home;