dots/modules/hosts/darwin/AirPuppet/default.nix
Gene Liverman aef10f1db0 Adding mightymac
This adds all the code needed to get mightmac setup, at least to start
with. A couple of other things were changed to account for this being
the first Apple Silicon Mac I have used.

Additionally, I have restricted VLC to only select Macs now due to
using a custom build of it on my work computer.
2024-02-08 13:55:02 -05:00

16 lines
258 B
Nix

{ pkgs, ... }: {
system.stateVersion = 4;
homebrew = {
# used to have tap sandreas/tap and program m4b-tool
casks = [
"backblaze"
"calibre"
"steam"
"vlc"
];
masApps = {
"HomeCam" = 1292995895;
};
};
}