nixpkgs-odroid-hc4/lib/tests/modules/attrsOf-lazy-check.nix
2025-12-20 09:59:59 +11:00

7 lines
144 B
Nix

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