Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / freeform-nested.nix
blobb81fa7f0d222b27c105219df1db25f9624736eba
1 { lib, ... }:
2 let
3   deathtrapArgs = lib.mapAttrs
4     (k: _: throw "The module system is too strict, accessing an unused option's ${k} mkOption-attribute.")
5     (lib.functionArgs lib.mkOption);
6 in
8   options.nest.foo = lib.mkOption {
9     type = lib.types.bool;
10     default = false;
11   };
12   options.nest.unused = lib.mkOption deathtrapArgs;
13   config.nest.bar = "bar";