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

42 lines
884 B
Nix
Raw Permalink 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;
# 'zap': uninstalls all formulae(and related files) not listed here.
cleanup = "zap";
};
# Applications to install from Mac App Store using mas.
# You need to install all these Apps manually first so that your apple account have records for them.
# otherwise Apple Store will refuse to install them.
# For details, see https://github.com/mas-cli/mas
2024-07-29 23:09:42 -05:00
masApps = {
Xcode = 497799835;
"Reeder 5." = 1529448980;
Wireguard = 1451685025;
Bitwarden = 1352778147;
"AdGuard for Safari" = 1440147259;
};
taps = [
];
brews = [
];
casks = [
"raycast"
"jordanbaird-ice"
2024-07-29 23:09:42 -05:00
];
};
}