core/nodes/1_lib/source/tests/modules/options-type-error-configuration.nix
2024-05-25 10:31:17 -04:00

7 lines
149 B
Nix

{ lib, ... }: {
options = {
# unlikely mistake, but we can catch any attrset with _type
result = lib.evalModules { modules = []; };
};
}