mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
9 lines
172 B
Nix
9 lines
172 B
Nix
![]() |
{ lib, config, ... }:
|
||
|
{
|
||
|
options.conditionalWorks = lib.mkOption {
|
||
|
default = !config.value ? foo;
|
||
|
};
|
||
|
|
||
|
config.value.foo = lib.mkIf false "should not be defined";
|
||
|
}
|