config/nix-darwin/homebrew.nix

62 lines
901 B
Nix
Raw Normal View History

2024-11-23 22:35:56 -08:00
{ ... }:
{
homebrew = {
enable = true;
2024-11-24 00:55:13 -08:00
onActivation = {
cleanup = "zap";
autoUpdate = false;
upgrade = false;
};
brews = [
"pinentry-mac"
];
2024-11-23 22:35:56 -08:00
casks = [
2024-11-24 00:55:13 -08:00
# System monitoring
"grandperspective"
"lulu"
"xrg"
# Desktop Environment
2024-11-23 22:35:56 -08:00
"karabiner-elements"
2024-11-24 00:55:13 -08:00
"kando"
# Inputs
"wacom-tablet"
# Multimedia
2024-11-23 22:35:56 -08:00
"vlc"
2024-11-24 00:55:13 -08:00
"darktable"
"adobe-dng-converter"
# Communications
"signal"
"slack"
"discord"
"zoom"
# Browsing
"firefox"
"zotero"
"anki"
"skim"
# Editors
"emacs-mac"
"arduino-ide"
"blender"
"inkscape"
# Terminal
"iterm2"
# Fonts
"font-source-code-pro"
2024-11-23 22:35:56 -08:00
];
taps = [
2024-11-24 00:55:13 -08:00
"koekeishiya/formulae"
2024-11-23 22:35:56 -08:00
"railwaycat/emacsmacport"
2024-11-24 00:55:13 -08:00
"caskroom/cask"
2024-11-23 22:35:56 -08:00
];
};
}