diff options
Diffstat (limited to 'modules/mac/programs/homebrew/nix-homebrew.nix')
| -rw-r--r-- | modules/mac/programs/homebrew/nix-homebrew.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/mac/programs/homebrew/nix-homebrew.nix b/modules/mac/programs/homebrew/nix-homebrew.nix new file mode 100644 index 0000000..487bbaa --- /dev/null +++ b/modules/mac/programs/homebrew/nix-homebrew.nix @@ -0,0 +1,18 @@ +{ inputs, ... }: +{ + nix-homebrew = { + enable = true; + enableRosetta = true; + user = "ebisu"; + mutableTaps = false; + + taps = with inputs; { + "artginzburg/homebrew-tap" = artginzburg-homebrew-tap; + "homebrew/homebrew-core" = homebrew-core; + "homebrew/homebrew-cask" = homebrew-cask; + "homebrew/homebrew-bundle" = homebrew-bundle; + "nerdsupremacist/homebrew-tap" = nerdsupremacist-homebrew-tap; + "nikitabobko/homebrew-tap" = nikitabobko-homebrew-tap; + }; + }; +} |