nix-config-v2/modules/machine/sephiroth/apps.nix

37 lines
547 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-07-29 23:09:42 -05: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 = [
];
brews = [
];
casks = [
"ghostty"
"raycast"
"jordanbaird-ice"
2024-07-29 23:09:42 -05:00
];
};
}