From bded1b359d4ba1d3d0bbb75dbc8b5d8f45094e06 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Wed, 25 Mar 2026 10:54:41 +0100 Subject: [PATCH] fix(macos): install disk-inventory-x via Homebrew cask Use the Homebrew cask on Apple Silicon because the nixpkgs package is x86_64-darwin only, and document the reason inline to prevent future regressions. Made-with: Cursor --- nixos/hosts/daniel-macbook-air.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/hosts/daniel-macbook-air.nix b/nixos/hosts/daniel-macbook-air.nix index 11ead3e..354cfb1 100644 --- a/nixos/hosts/daniel-macbook-air.nix +++ b/nixos/hosts/daniel-macbook-air.nix @@ -38,6 +38,7 @@ in { enable = true; casks = [ "google-chrome" + "disk-inventory-x" # Apple Silicon uses Homebrew; nixpkgs package is x86_64-darwin only. ]; onActivation.cleanup = "zap"; };