summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/options-type-error-configuration.nix
blob: 25a6a1bee611cf091bdf56e3f54c3f203e3af6cc (plain)
1
2
3
4
5
6
7
{ lib, ... }:
{
  options = {
    # unlikely mistake, but we can catch any attrset with _type
    result = lib.evalModules { modules = [ ]; };
  };
}