1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 00:19:25 +03:00
nixpkgs/lib/tests/modules/default.nix

16 lines
178 B
Nix
Raw Normal View History

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