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

  config.foo = lib.mkIf (config ? value) config.value;
}