flake(system): use home-manager lib instance in correct place

This commit is contained in:
NullBite 2025-02-22 12:39:52 -05:00
parent 4b856ed7f9
commit cd302073fe
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -201,7 +201,7 @@ in {
# setting overlays at the home level; this allows for doing
# that while inheriting the system overlays.
nixpkgs = {
config = mapAttrs (n: v: lib.mkDefault v) config.nixpkgs.config;
config = lib.mapAttrs (n: v: lib.mkDefault v) config.nixpkgs.config;
# mkOrder 900 is after mkBefore but before default order
overlays = lib.mkOrder 900 config.nixpkgs.overlays;
};