core/nodes/1_lib/tests/modules/default.nix
2024-05-21 23:53:33 -04:00

9 lines
149 B
Nix

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