core/lib/tests/modules/default.nix
2024-05-01 18:26:04 -04:00

9 lines
149 B
Nix

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