repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git]
/
lib
/
tests
/
modules
/
attrsOf-lazy-check.nix
blob
ec5b418b15aa95fbad78f2c1772aeae94a62b0a3
1
{ lib, config, ... }: {
2
options.isLazy = lib.mkOption {
3
default = ! config.value ? foo;
4
};
5
6
config.value.bar = throw "is not lazy";
7
}