-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrew.nix
More file actions
108 lines (101 loc) · 1.82 KB
/
brew.nix
File metadata and controls
108 lines (101 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{ ... }: {
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "uninstall";
};
global = {
brewfile = true;
};
taps = [
"1password/tap"
"aws/tap"
"homebrew/bundle"
];
brews = [
"age"
"awscli"
"chezmoi"
"curl"
"fswatch"
"gh"
"gifsicle"
"git"
"git-lfs"
"go"
"htop"
"jq"
"lynx"
"m1ddc"
"magic-wormhole"
"mas"
"mosh"
"mtr"
"nmap"
"node"
"nvm"
"pandoc"
"picocom"
"pv"
"rclone"
"screenresolution"
"terraform"
"uv"
"watch"
"watchman"
"wget"
"ykman"
"ykpers"
"yt-dlp"
"yubico-piv-tool"
];
casks = [
"1password"
"1password-cli"
"appcleaner"
"archiver-app"
"arq"
"coconutbattery"
"dash"
"docker-desktop"
"elgato-stream-deck"
"firefox"
"google-chrome"
"handbrake-app"
"hex-fiend"
"jordanbaird-ice"
"inkscape"
"insomnia"
"iterm2"
"monitorcontrol"
"obs"
"obsbot-center"
"pdf-expert"
"rectangle"
"secretive"
"sourcetree"
"utm"
"visual-studio-code"
"vlc"
"wireshark-app"
"yubico-authenticator"
"yubico-yubikey-manager"
];
masApps = {
"GarageBand" = 682658836;
"iClip" = 468369783;
"iMovie" = 408981434;
"Keynote" = 409183694;
"Numbers" = 409203825;
"Pages" = 409201541;
"Amphetamine" = 937984704;
"Brother P-touch Editor" = 1453365242;
"Home Assistant" = 1099568401;
"Ivory" = 6444602274;
"Speedtest" = 1153157709;
"Xcode" = 497799835;
"YubiKey Personalization Tool" = 638161122;
};
};
}