core/lib/tests/modules/options-type-error-configuration.nix
2024-05-01 18:26:04 -04:00

7 lines
149 B
Nix

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