config/nix-darwin/homebrew.nix

70 lines
1022 B
Nix
Raw Permalink 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-25 20:43:45 -08:00
# Building tools
"libtool"
"pkgconf"
"autoconf"
"poppler"
"automake"
2024-11-24 00:55:13 -08:00
];
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"
"zulip"
2024-11-24 00:55:13 -08:00
# Browsing
"firefox"
"zotero"
"anki"
"skim"
# Editors
"emacs-mac"
"arduino-ide"
"blender"
"inkscape"
# Terminal
"iterm2"
# Fonts
2024-12-03 00:48:53 -08:00
"font-noto-mono"
"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"
];
};
}