summary refs log tree commit diff
path: root/lib/tests/modules/default.nix
blob: 5b0947104198c3f71f7bed3dc7155454f272b1bf (plain) (blame)
1
2
3
4
5
6
7
8
{ lib ? import ../.., modules ? [] }:

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