packages feed

opt-env-conf-test-0.0.0.2: test_resources/docs/enable-disable-optional/nix-options.nix

{ lib }:
{
  example = lib.mkOption {
    default = null;
    description = "Example of an enable/disable switch";
    type = lib.types.nullOr lib.types.bool;
  };
}