nix-config-v2/modules/machine/sephiroth/apps.nix
Wyatt J. Miller 93c8464641 fixed podman config for sephiroth, added ghostty as brew package
todo: fix ghostty when it gets added as a nix package for darwin
2024-12-28 17:11:52 -05:00

37 lines
547 B
Nix

{pkgs, ...}: {
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"
];
};
}