summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/freeform-unstr-dep-str.nix
blob: dae56f9d35b14864243023f6b39bb78968e77213 (plain)
1
2
3
4
5
6
7
8
9
{ lib, config, ... }:
{
  options.value = lib.mkOption {
    type = lib.types.nullOr lib.types.str;
    default = null;
  };

  config.foo = lib.mkIf (config.value != null) config.value;
}