From be4233a53b74f857ea530ac6099cccb39c756657 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Tue, 24 Mar 2026 15:17:19 +0100 Subject: [PATCH] feat(macos): install Google Chrome via Homebrew cask Enable declarative Homebrew cask management on the macOS host so Google Chrome is installed during darwin activation and stale Homebrew items are cleaned up with zap. Made-with: Cursor --- nixos/hosts/daniel-macbook-air.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/hosts/daniel-macbook-air.nix b/nixos/hosts/daniel-macbook-air.nix index 2061f93..63bb3f9 100644 --- a/nixos/hosts/daniel-macbook-air.nix +++ b/nixos/hosts/daniel-macbook-air.nix @@ -29,6 +29,14 @@ in { knownNetworkServices = [ "Wi-Fi" "Thunderbolt Bridge" ]; }; + homebrew = { + enable = true; + casks = [ + "google-chrome" + ]; + onActivation.cleanup = "zap"; + }; + # macOS niceties security.pam.services.sudo_local.touchIdAuth = true;