mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00: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";
|
||
|
}
|