opt-env-conf-test-0.0.0.2: test_resources/docs/yes-no-optional/nix-options.nix
{ lib }:
{
example = lib.mkOption {
default = null;
description = "Example of a yes/no switch";
type = lib.types.nullOr lib.types.bool;
};
}
{ lib }:
{
example = lib.mkOption {
default = null;
description = "Example of a yes/no switch";
type = lib.types.nullOr lib.types.bool;
};
}