mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -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.
52 lines
941 B
Nix
52 lines
941 B
Nix
{ pkgs, ... }: {
|
|
system.stateVersion = 4;
|
|
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
chart-testing
|
|
kopia
|
|
kubectx
|
|
python2
|
|
];
|
|
};
|
|
|
|
homebrew = {
|
|
taps = [
|
|
"hashicorp/tap"
|
|
# "homebrew/bundle"
|
|
# "jandedobbeleer/oh-my-posh"
|
|
"puppetlabs/puppet"
|
|
];
|
|
brews = [
|
|
"adr-tools"
|
|
"helm"
|
|
"kubernetes-cli"
|
|
];
|
|
casks = [
|
|
"asana"
|
|
"boinc"
|
|
"discord"
|
|
"elgato-stream-deck"
|
|
"google-drive"
|
|
"kopiaui"
|
|
"obs"
|
|
"pdk"
|
|
"puppet-agent"
|
|
"puppet-bolt"
|
|
"qmk-toolbox"
|
|
"thunderbird"
|
|
"vagrant"
|
|
"vial"
|
|
"whalebird"
|
|
"zenmap"
|
|
];
|
|
masApps = {
|
|
"HomeCam" = 1292995895;
|
|
"Keeper Password Manager" = 414781829;
|
|
"MeetingBar" = 1532419400;
|
|
"Microsoft Remote Desktop" = 1295203466;
|
|
"Telegram" = 747648890;
|
|
"WhatsApp Messenger" = 310633997;
|
|
};
|
|
};
|
|
}
|