blob: 4ff247eaef5ac6febd3a14caf7e3ddadc86c52d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ 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;
"acsandmann/homebrew-tap" = acsandmann-homebrew-tap;
"hillyu/homebrew-tap" = hillyu-homebrew-tap;
"humanlayer/homebrew-humanlayer" = humanlayer-homebrew-humanlayer;
"oven-sh/homebrew-bun" = oven-sh-homebrew-bun;
};
};
}
|