summary refs log tree commit diff
path: root/lib/tests/modules/freeform-str-dep-unstr.nix
blob: a2dfbc80cfa6f3d42cfd23ff9b9acca862e8c9cf (plain) (blame)
1
2
3
4
5
6
7
8
{ lib, config, ... }: {
  options.foo = lib.mkOption {
    type = lib.types.nullOr lib.types.str;
    default = null;
  };

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