nixpkgs/lib/tests/modules/freeform-unstr-dep-str.nix
2020-08-03 22:37:01 +02:00

9 lines
189 B
Nix

{ lib, config, ... }: {
options.value = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
};
config.foo = lib.mkIf (config.value != null) config.value;
}