mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
8 lines
173 B
Nix
8 lines
173 B
Nix
{ lib, config, ... }: {
|
|
options.conditionalWorks = lib.mkOption {
|
|
default = ! config.value ? foo;
|
|
};
|
|
|
|
config.value.foo = lib.mkIf false "should not be defined";
|
|
}
|