core/lib/tests/modules/freeform-unstr-dep-str.nix
2024-05-01 18:26:04 -04: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;
}