core/lib/tests/modules/attrsOf-lazy-check.nix

7 lines
137 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{ lib, config, ... }:
{
options.isLazy = lib.mkOption { default = !config.value ? foo; };
2024-05-01 22:14:04 +00:00
config.value.bar = throw "is not lazy";
}