mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03: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";
|
|
}
|