Mido's House Multiworld install instructions for macOS

You will need administrator permissions.

Using Homebrew (recommended)

  1. Install Homebrew.
  2. In Terminal, run the following command:
    brew install --no-quarantine midoshouse/tap/mhmw

Using nix-darwin

  1. Edit your configuration.nix to include the following:
    { config, pkgs, ... }: {
        homebrew = {
            enable = true;
            casks = [
                {
                    name = "midoshouse/tap/mhmw";
                    args.no_quarantine = true;
                }
            ];
            onActivation = {
                autoUpdate = true;
                upgrade = true;
            };
        };
    }
  2. Run darwin-rebuild switch

Support

If you need help, please ask in #setup-support on the OoTR Discord (feel free to ping @fenhl) or open an issue.