From 18e641daf891b9f3f71f29e8a9125c129dd3eb87 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 25 Nov 2024 15:47:08 +0100 Subject: [PATCH] Add 'mas' to Homebrew configuration in aarch64-darwin This commit updates the default Homebrew configuration to include 'mas' alongside 'libusb' for the aarch64-darwin system. It also introduces an empty 'masApps' array for potential future use. --- modules/darwin/system/homebrew/default.nix | 7 ++++++- systems/aarch64-darwin/m4/default.nix | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/modules/darwin/system/homebrew/default.nix b/modules/darwin/system/homebrew/default.nix index 2099b6a..77f0d86 100644 --- a/modules/darwin/system/homebrew/default.nix +++ b/modules/darwin/system/homebrew/default.nix @@ -1,4 +1,9 @@ -{ lib, config, inputs, ... }: +{ + lib, + config, + inputs, + ... +}: with lib; with lib.metacfg; diff --git a/systems/aarch64-darwin/m4/default.nix b/systems/aarch64-darwin/m4/default.nix index db3b0c5..a402f6f 100644 --- a/systems/aarch64-darwin/m4/default.nix +++ b/systems/aarch64-darwin/m4/default.nix @@ -5,7 +5,11 @@ with lib.metacfg; homebrew = { enable = true; - brews = [ "libusb"]; + brews = [ + "libusb" + "mas" + ]; + masApps = [ ]; }; metacfg = {