homebrew.taps

List of Homebrew formula repositories to tap.

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

{ name = "user/repo"; }

Type
list of ((submodule) or string convertible to it)
Default
[ ]
Example
# Adapted from https://docs.brew.sh/Brew-Bundle-and-Brewfile
[
  # `brew tap`
  "apple/apple"

  # `brew tap` with custom Git URL and arguments
  {
    name = "user/tap-repo";
    clone_target = "https://user@bitbucket.org/user/homebrew-tap-repo.git";
    force_auto_update = true;
  }
]
Declared
<nix-darwin/modules/homebrew.nix>