core/lib/tests/modules/options-type-error-configuration.nix

7 lines
149 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ lib, ... }: {
options = {
# unlikely mistake, but we can catch any attrset with _type
result = lib.evalModules { modules = []; };
};
}