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 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://[email protected]/user/homebrew-tap-repo.git";
force_auto_update = true;
}
]