{ ... }: { # To make this work, homebrew need to be installed manually, see https://brew.sh # # The apps installed by homebrew are not managed by nix, and not reproducible! # But on macOS, homebrew has a much larger selection of apps than nixpkgs, especially for GUI apps! homebrew = { enable = true; onActivation = { autoUpdate = true; upgrade = true; cleanup = "zap"; }; # `brew install` brews = [ "gh" "zizmor" ]; # `brew install --cask` casks = [ "beeper" "clipbook" "colibri-social/tap/colibri-social" "discord" "firefox" "obsidian" "olympus" "spotify" "steam" "zed" "zen" ]; }; }