format brewery

This commit is contained in:
Olaf
2026-07-31 17:47:47 +02:00
parent e57c792874
commit a40695beaa
+79 -79
View File
@@ -1,11 +1,11 @@
{pkgs, ...}: { pkgs, ... }:
{ {
homebrew = { homebrew = {
enable = true; enable = true;
global = { global = {
brewfile = true; brewfile = true;
}; };
brews = []; brews = [ ];
onActivation = { onActivation = {
cleanup = "uninstall"; cleanup = "uninstall";
@@ -15,23 +15,23 @@ homebrew = {
}; };
masApps = { masApps = {
# These app IDs are from using the mas CLI app # These app IDs are from using the mas CLI app
# mas = mac app store # mas = mac app store
# https://github.com/mas-cli/mas # https://github.com/mas-cli/mas
# #
# $ nix shell nixpkgs#mas # $ nix shell nixpkgs#mas
# $ mas search <app name> # $ mas search <app name>
# #
# If you have previously added these apps to your Mac App Store profile (but not installed them on this system), # If you have previously added these apps to your Mac App Store profile (but not installed them on this system),
# you may receive an error message "Redownload Unavailable with This Apple ID". # you may receive an error message "Redownload Unavailable with This Apple ID".
# This message is safe to ignore. # This message is safe to ignore.
"1Password for Safari" = 1569813296; # (8.10.82) "1Password for Safari" = 1569813296; # (8.10.82)
"Affinity Designer 2" = 1616831348; "Affinity Designer 2" = 1616831348;
"Affinity Photo 2: Image Editor" = 1616822987; "Affinity Photo 2: Image Editor" = 1616822987;
"Affinity Publisher 2" = 1606941598; "Affinity Publisher 2" = 1606941598;
# "DaisyDisk" = 409907375; # (4.32) # Don't use this, we need the official version that is not sandboxed # "DaisyDisk" = 409907375; # (4.32) # Don't use this, we need the official version that is not sandboxed
"Fantastical - Calendar" = 975937182; "Fantastical - Calendar" = 975937182;
"Fedistar" = 6445863996; # (1.13.1) "Fedistar" = 6445863996; # (1.13.1)
"Home Assistant" = 1099568401; # (2025.7.1) "Home Assistant" = 1099568401; # (2025.7.1)
"Ice Cubes for Mastodon" = 6444915884; # (1.11.3) "Ice Cubes for Mastodon" = 6444915884; # (1.11.3)
"LibreOffice" = 1630474372; "LibreOffice" = 1630474372;
@@ -48,80 +48,80 @@ homebrew = {
}; };
casks = [ casks = [
# Development Tools # Development Tools
"arduino-ide" "arduino-ide"
"docker-desktop" "docker-desktop"
"iterm2" "iterm2"
"oracle-jdk" "oracle-jdk"
"visual-studio-code" "visual-studio-code"
# Creative tools # Creative tools
"blender" "blender"
"gimp" "gimp"
"inkscape" "inkscape"
"vcv-rack" "vcv-rack"
#"affinity-designer" #"affinity-designer"
#"affinity-photo" #"affinity-photo"
#"affinity-publisher" #"affinity-publisher"
# Communication Tools # Communication Tools
"adium" "adium"
"discord" "discord"
"signal" "signal"
"webex" "webex"
"whatsapp" "whatsapp"
"zoom" "zoom"
# Utility Tools # Utility Tools
"blackhole-16ch" "blackhole-16ch"
"blackhole-2ch" "blackhole-2ch"
"box-drive" "box-drive"
"box-tools" "box-tools"
"daisydisk" "daisydisk"
"karabiner-elements" "karabiner-elements"
"keybase" "keybase"
"moonlight" "moonlight"
"spamsieve" "spamsieve"
"syncthing-app" "syncthing-app"
"synology-drive" "synology-drive"
# Entertainment Tools # Entertainment Tools
"qobuz" "qobuz"
"steam" "steam"
"handbrake-app" "handbrake-app"
"jellyfin-media-player" "jellyfin-media-player"
"mediaelch" "mediaelch"
"obs" "obs"
"vimediamanager" "vimediamanager"
"vlc" "vlc"
# Productivity Tools # Productivity Tools
"1Password" "1Password"
"bitwarden" "bitwarden"
"calibre" "calibre"
"dbeaver-community" "dbeaver-community"
"element" "element"
"gpg-suite" "gpg-suite"
"macdown-3000" "macdown-3000"
"mailmate@beta" "mailmate@beta"
"orcaslicer" "orcaslicer"
"remanager" "remanager"
"qmk-toolbox" "qmk-toolbox"
"smartsheet" "smartsheet"
# "sqlitestudio" # Doesn't work without Rosetta # "sqlitestudio" # Doesn't work without Rosetta
# "virtualbox" # build error? # "virtualbox" # build error?
"copilot-cli" "copilot-cli"
# Browsers # Browsers
"brave-browser" "brave-browser"
"firefox" "firefox"
"google-chrome" "google-chrome"
# x11 # x11
"xquartz" "xquartz"
]; ];
}; };
} }