opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / freeform-unstr-dep-str.nix
blob549d89afecaced729556ab98de743dfe07f1c22f
1 { lib, config, ... }: {
2   options.value = lib.mkOption {
3     type = lib.types.nullOr lib.types.str;
4     default = null;
5   };
7   config.foo = lib.mkIf (config.value != null) config.value;