diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2026-03-01 18:56:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-01 18:56:27 +0100 |
| commit | 011486787f639f2d2474bbaf5a6ef3d77fb45a43 (patch) | |
| tree | c443f2c41053e2ed7599e9e676302dfa30dc89d4 /modules/darwin/homebrew.nix | |
| parent | eb7c55e9dc97524cca7c5b6a268cd66af147b12e (diff) | |
| download | dotfiles-011486787f639f2d2474bbaf5a6ef3d77fb45a43.tar.gz dotfiles-011486787f639f2d2474bbaf5a6ef3d77fb45a43.zip | |
Refactor dotfiles to declarative Nix management (nix-darwin + home-manager) (#5)
Diffstat (limited to 'modules/darwin/homebrew.nix')
| -rw-r--r-- | modules/darwin/homebrew.nix | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/modules/darwin/homebrew.nix b/modules/darwin/homebrew.nix new file mode 100644 index 0000000..3c3f469 --- /dev/null +++ b/modules/darwin/homebrew.nix @@ -0,0 +1,191 @@ +{ ... }: + +{ + homebrew = { + enable = true; + + onActivation = { + autoUpdate = true; + upgrade = true; + cleanup = "zap"; + }; + + taps = [ + "bramstein/webfonttools" + "danielgtaylor/restish" + "oven-sh/bun" + "pulumi/tap" + "go-task/tap" + "tursodatabase/tap" + "yakitrak/yakitrak" + "simenandre/tools" + ]; + + brews = [ + # Editors and terminal multiplexers + "neovim" + "tmux" + + # Shells and shell utilities + "zsh" + "bash" + "bash-completion" + "ghq" + "moreutils" + + # GNU tools + "findutils" + "gnu-sed" + "grep" + + # Networking tools + "openssh" + "nmap" + "wget" + + # Security and encryption + "gnupg" + "git-secret" + "ssh-copy-id" + + # Compression libraries and tools + "lz4" + "zlib" + "zstd" + "libffi" + "p7zip" + "pigz" + "zopfli" + + # Programming languages and runtimes + "golang" + "golangci-lint" + "python@3.11" + "rust" + "zig" + "pkl" + + # Font tools + "sfnt2woff" + "sfnt2woff-zopfli" + "woff2" + + # JavaScript runtimes and package managers + "bun" + "pnpm" + "volta" + "corepack" + "deno" + + # REST API clients + "danielgtaylor/restish/restish" + + # Version control + "git" + "git-lfs" + "lazygit" + "microplane" + + # Search tools + "ripgrep" + "ack" + "fzf" + + # JSON/YAML processing tools + "jq" + "yq" + + # Cloud and IaC tools + "pulumi" + "crd2pulumi" + "kube2pulumi" + "pulumictl" + "tf2pulumi" + "azure-cli" + "kubectl" + "helm" + "cilium-cli" + "doctl" + "flyctl" + + # Container tools + "podman" + "podman-compose" + + # Task runners and automation + "go-task" + "act" + + # Databases and database tools + "turso" + "libpq" + "sqld" + + # Terminal tools + "pv" + "rename" + "rlwrap" + "tree" + "screen" + "vbindiff" + "tmate" + "asciinema" + "dasel" + "tldr" + "starship" + "gh" + + # HTTP and web servers + "caddy" + "goreleaser" + + # Specific toolsets + "whalebrew" + "gd" + "ghostscript" + "rclone" + "graphviz" + + # Mac App Store CLI + "mas" + ]; + + casks = [ + "spotify" + "slack" + "sonos" + "figma" + "discord" + "grammarly" + "microsoft-remote-desktop" + "postico" + "cyberduck" + "adobe-creative-cloud" + "1password-cli" + "protonvpn" + "openvpn-connect" + "raycast" + "rectangle" + "google-chrome" + "google-drive" + "karabiner-elements" + "postman" + "ghostty" + "proton-mail" + "claude" + "font-symbols-only-nerd-font" + "font-jetbrains-mono" + "google-cloud-sdk" + "docker" + "podman-desktop" + "microsoft-teams" + "zoom" + "obsidian" + ]; + + masApps = { + "Outline" = 1356178125; + "Remote Desktop" = 409907375; + }; + }; +} |
