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:
parent
6eb15730d3
commit
18e641daf8
|
@ -1,4 +1,9 @@
|
||||||
{ lib, config, inputs, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
with lib.metacfg;
|
with lib.metacfg;
|
||||||
|
|
|
@ -5,7 +5,11 @@ with lib.metacfg;
|
||||||
|
|
||||||
homebrew = {
|
homebrew = {
|
||||||
enable = true;
|
enable = true;
|
||||||
brews = [ "libusb"];
|
brews = [
|
||||||
|
"libusb"
|
||||||
|
"mas"
|
||||||
|
];
|
||||||
|
masApps = [ ];
|
||||||
};
|
};
|
||||||
|
|
||||||
metacfg = {
|
metacfg = {
|
||||||
|
|
Loading…
Reference in a new issue