nixfiles/darwin/packages.nix
2023-11-29 07:59:39 -08:00

65 lines
998 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

_: {
homebrew = {
brewPrefix = "/opt/homebrew/bin";
brews = [
# Security
"gnupg" # GPG
"pinentry-mac" # Pinentry for GPG
# Utilities
"pandoc"
];
casks = [
# Browsers
"firefox"
"google-chrome"
# Chat
"signal"
"telegram"
"discord"
"element"
"slack"
"keybase"
# Media
"spotify"
"deluge"
# Exocortex
"obsidian"
# Security
"bitwarden"
"mullvadvpn"
"pycharm-ce"
# Development Tools
"iterm2"
"cyberduck"
"boop"
# Utilities
"disk-inventory-x"
"devtoys"
"contexts"
"rectangle"
"syncthing"
"anki"
"bartender"
];
taps = [
"homebrew/cask-versions"
];
masApps = {
# Security
Tailscale = 1475387142;
# Utilities
Dato = 1470584107;
Lungo = 1263070803;
"Battery Indicator" = 1206020918;
};
};
}