nixpkgs/lib/tests/modules/attrsOf-lazy-check.nix
2020-01-10 16:20:31 +01:00

8 lines
144 B
Nix

{ lib, config, ... }: {
options.isLazy = lib.mkOption {
default = ! config.value ? foo;
};
config.value.bar = throw "is not lazy";
}