nix-super/tests/modules/freeform-unstr-dep-str.nix
2023-08-16 15:46:37 +02:00

8 lines
189 B
Nix

{ lib, config, ... }: {
options.value = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
};
config.foo = lib.mkIf (config.value != null) config.value;
}