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.
This commit is contained in:
Harald Hoyer 2024-11-25 15:47:08 +01:00
parent 6eb15730d3
commit 18e641daf8
2 changed files with 11 additions and 2 deletions

View file

@ -1,4 +1,9 @@
{ lib, config, inputs, ... }: {
lib,
config,
inputs,
...
}:
with lib; with lib;
with lib.metacfg; with lib.metacfg;

View file

@ -5,7 +5,11 @@ with lib.metacfg;
homebrew = { homebrew = {
enable = true; enable = true;
brews = [ "libusb"]; brews = [
"libusb"
"mas"
];
masApps = [ ];
}; };
metacfg = { metacfg = {