core/lib/tests/modules/default.nix
2024-06-30 09:16:52 +01:00

16 lines
178 B
Nix

{
lib ? import ../..,
modules ? [ ],
}:
{
inherit
(lib.evalModules {
inherit modules;
specialArgs.modulesPath = ./.;
})
config
options
;
}