nixpkgs-odroid-hc4/lib/tests/modules/freeform-str-dep-unstr.nix
2025-12-20 09:59:59 +11:00

8 lines
181 B
Nix

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