Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / freeform-str-dep-unstr.nix
bloba2dfbc80cfa6f3d42cfd23ff9b9acca862e8c9cf
1 { lib, config, ... }: {
2   options.foo = lib.mkOption {
3     type = lib.types.nullOr lib.types.str;
4     default = null;
5   };
7   config.foo = lib.mkIf (config ? value) config.value;