46 lines
722 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-07-30 00:09:42 -04:00
environment.systemPackages = with pkgs; [
neovim
git
];
environment.variables.EDITOR = "nvim";
homebrew = {
enable = true;
onActivation = {
autoUpdate = false;
cleanup = "zap";
};
masApps = {
Xcode = 497799835;
"Reeder 5." = 1529448980;
Wireguard = 1451685025;
Bitwarden = 1352778147;
"AdGuard for Safari" = 1440147259;
};
taps = [
"iina/homebrew-mpv-iina"
2024-07-30 00:09:42 -04:00
];
brews = [
];
casks = [
"ghostty"
"raycast"
"jordanbaird-ice"
"iina"
2025-03-08 00:21:20 -05:00
"linearmouse"
"sanesidebuttons"
"betterdisplay"
"maccy"
"swift-quit"
2025-04-15 19:51:56 -04:00
"medis"
2025-03-08 00:21:20 -05:00
# "alt-tab"
2024-07-30 00:09:42 -04:00
];
};
}