mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
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.
16 lines
258 B
Nix
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;
|
|
};
|
|
};
|
|
}
|