mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
wrapper-manager-fds/lib: update module evaluation function
Now we set `pkgs` modularly allowing users to set their own nixpkgs instance for whatever reason. Also, we removed `modulesPath` since it is pointless and I would like to keep wrapper-manager-fds to be pretty simple to maintain at its core.
This commit is contained in:
parent
2a84b7e129
commit
a21607f907
@ -13,10 +13,16 @@ rec {
|
|||||||
specialArgs ? { },
|
specialArgs ? { },
|
||||||
}:
|
}:
|
||||||
lib.evalModules {
|
lib.evalModules {
|
||||||
modules = [ ../modules/wrapper-manager ] ++ modules;
|
inherit specialArgs;
|
||||||
specialArgs = specialArgs // {
|
modules = [
|
||||||
inherit pkgs;
|
../modules/wrapper-manager
|
||||||
modulesPath = builtins.toString ../modules/wrapper-manager;
|
|
||||||
};
|
# Setting pkgs modularly. This would make setting up wrapper-manager
|
||||||
|
# with different nixpkgs instances possible but it isn't something that
|
||||||
|
# is explicitly supported.
|
||||||
|
({ lib, ... }: {
|
||||||
|
config._module.args.pkgs = lib.mkDefault pkgs;
|
||||||
|
})
|
||||||
|
] ++ modules;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user