packages feed

opt-env-conf-test-0.0.0.2: test_resources/docs/big-config/nix-options.nix

{ lib }:
{
  big = lib.mkOption {
    default = null;
    description = "big configuration object";
    type = lib.types.nullOr (lib.types.submodule {
      options = {
        map = lib.mkOption {
          type = lib.types.attrsOf (lib.types.attrsOf lib.types.int);
        };
        sub = lib.mkOption {
          default = null;
          type = lib.types.nullOr lib.types.str;
        };
      };
    });
  };
}