about summary refs log tree commit diff
path: root/lib/tests/modules/options-type-error-configuration.nix
blob: bcd6db89487a3a000ad4814df9894c2d8f387e0c (plain) (blame)
1
2
3
4
5
6
{ lib, ... }: {
  options = {
    # unlikely mistake, but we can catch any attrset with _type
    result = lib.evalModules { modules = []; };
  };
}