core/lib/tests/modules/default.nix

16 lines
178 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib ? import ../..,
modules ? [ ],
}:
2024-05-01 22:14:04 +00:00
{
2024-06-30 08:16:52 +00:00
inherit
(lib.evalModules {
inherit modules;
specialArgs.modulesPath = ./.;
})
config
options
;
2024-05-01 22:14:04 +00:00
}