Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / attrsOf-lazy-check.nix
blobec5b418b15aa95fbad78f2c1772aeae94a62b0a3
1 { lib, config, ... }: {
2   options.isLazy = lib.mkOption {
3     default = ! config.value ? foo;
4   };
6   config.value.bar = throw "is not lazy";