Prepare for new IVR Mac machine

Getting code prepared for arrival of the new Mac system
Adding the basic casks that I need
This commit is contained in:
Greg Hellings
2025-05-09 11:18:52 -05:00
parent 293bb518d6
commit 96955700d4
3 changed files with 26 additions and 10 deletions
+2 -3
View File
@@ -1,12 +1,12 @@
{ top, overlays, ... }:
let
inherit (top.nixunstable) lib;
mac =
{
system ? "aarch64-darwin",
name,
channel ? top.nixunstable,
hm ? top.hmunstable,
extraMods ? [ ],
}:
let
nixpkgs = import channel { inherit system overlays; };
@@ -26,8 +26,7 @@ let
}
hm.darwinModules.home-manager
top.self.modules.darwinModule
./${name}
] ++ extraMods;
] ++ lib.optionals (builtins.pathExists ./hosts/${name}) [ ./hosts/${name} ];
};
in
rec {
+11
View File
@@ -0,0 +1,11 @@
{ ... }:
{
homebrews = {
enable = true;
casks = [
"firefox"
"onlyoffice"
"zed"
];
};
}