summaryrefslogtreecommitdiff
path: root/modules/mac/programs/homebrew/nix-homebrew.nix
blob: 54963559a8123d775ce10d19204eefe233835303 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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;
      "nerdsupremacist/homebrew-tap" = nerdsupremacist-homebrew-tap;
      "nikitabobko/homebrew-tap" = nikitabobko-homebrew-tap;
      "tuist/homebrew-tuist" = tuist-homebrew-tap;
      "koekeishiya/homebrew-formulae" = koekeishiya-homebrew-tap;
      "gromgit/homebrew-fuse" = gromgit-homebrew-fuse;
    };
  };
}