MyNixOS website logo

List of Homebrew formula repositories to tap.

Taps defined as strings, e.g., "user/repo", are a shorthand for:

{ name = "user/repo"; }

Declarations
    Type
    list of ((submodule) or string convertible to it)
    Default
    [ ]
    Example
    # Adapted examples from https://github.com/Homebrew/homebrew-bundle#usage
    [
      # `brew tap`
      "homebrew/cask"
    
      # `brew tap` with custom Git URL and arguments
      {
        name = "user/tap-repo";
        clone_target = "https://[email protected]/user/homebrew-tap-repo.git";
        force_auto_update = true;
      }
    ]