mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00
9 lines
143 B
Nix
9 lines
143 B
Nix
![]() |
{ lib, config, ... }:
|
||
|
{
|
||
|
options.isLazy = lib.mkOption {
|
||
|
default = !config.value ? foo;
|
||
|
};
|
||
|
|
||
|
config.value.bar = throw "is not lazy";
|
||
|
}
|