summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/default.nix
blob: f70c71955ee731286686e14845dfa74ab25efa01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  lib ? import ../..,
  modules ? [ ],
}:

{
  inherit
    (lib.evalModules {
      inherit modules;
      specialArgs.modulesPath = ./.;
    })
    config
    options
    ;
}