mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-02-07 06:19:02 +00:00
wrapper-manager-fds/lib: add lib argument for evaluation
This commit is contained in:
parent
4120a54385
commit
605f336349
@ -10,10 +10,11 @@ rec {
|
|||||||
/* Evaluate a wrapper-manager configuration. */
|
/* Evaluate a wrapper-manager configuration. */
|
||||||
eval = {
|
eval = {
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib ? pkgs.lib,
|
||||||
modules ? [ ],
|
modules ? [ ],
|
||||||
specialArgs ? { },
|
specialArgs ? { },
|
||||||
}:
|
}:
|
||||||
pkgs.lib.evalModules {
|
lib.evalModules {
|
||||||
modules = [ ../modules/wrapper-manager ] ++ modules;
|
modules = [ ../modules/wrapper-manager ] ++ modules;
|
||||||
specialArgs = specialArgs // {
|
specialArgs = specialArgs // {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
Loading…
Reference in New Issue
Block a user