depot/third_party/nixpkgs/lib/tests/modules/default.nix

15 lines
178 B
Nix

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