-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplications.nix
43 lines (39 loc) · 1.15 KB
/
applications.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
{
homebrew = {
enable = true;
global.autoUpdate = true;
onActivation = {
cleanup = "zap";
upgrade = true;
};
taps = [ "homebrew/cask" ];
brews = [ ];
casks = [
"balenaetcher" # USB drive imager.
"calibre" # Digital library.
"discord" # Nerd chat.
"element" # Nerdier chat.
"firefox" # A good web browser.
"iterm2" # A terminal emulator with font rendering & tmux support.
"itsycal" # Titlebar calendar.
"keepassxc" # 1Password keeps getting worse...
"secretive" # Secure Enclave SSH key & identity management.
# "sensiblesidebuttons" # Make the back buttons go... back?
"signal" # Secret chat.
# "virtualbox" # Virtualization (duh).
# "virtualbox-extension-pack" # Virtualization helpers.
"zotero" # Research paper catalog & organizer.
];
# Mac App Store applications.
#
# NOTE: Use the `mas` CLI to search for the number associated with a given
# application name.
#
# e.g. `mas search 1Password`
masApps = {
"Slack" = 803453959;
"Strongbox Pro" = 1481853033;
"Wireguard" = 1451685025;
};
};
}