-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomebrew.nix
52 lines (52 loc) · 1021 Bytes
/
homebrew.nix
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
{ ... }:
{
environment = {
variables = {
HOMEBREW_NO_ANALYTICS = "1";
HOMEBREW_NO_INSECURE_REDIRECT = "1";
HOMEBREW_NO_EMOJI = "1";
HOMEBREW_NO_ENV_HINTS = "0";
};
};
homebrew = {
enable = true;
caskArgs.require_sha = true;
onActivation = {
autoUpdate = false;
cleanup = "uninstall";
upgrade = false;
};
global = {
autoUpdate = false;
brewfile = true;
};
casks = [
"amethyst"
"appcleaner"
"calibre"
"dropbox"
"firefox"
"google-chrome"
"monodraw"
"signal"
"spotify"
# "steam"
"telegram"
"vlc"
];
masApps = {
Amphetamine = 937984704;
Bear = 1091189122;
iMovie = 408981434;
Ivory = 6444602274;
Keynote = 409183694;
Kindle = 302584613;
NextDNS = 1464122853;
Numbers = 409203825;
Pages = 409201541;
ReadKit = 1615798039;
TestFlight = 899247664;
Xcode = 497799835;
};
};
}