software.nix 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. { pkgs, outputs, ... }:
  2. {
  3. # TODO:
  4. # - Proton Mail Bridge
  5. # - Proton Drive set up home folders
  6. environment.systemPackages = with pkgs; [
  7. git
  8. gnupg
  9. jq
  10. ripgrep
  11. unstable.devenv
  12. ];
  13. environment.shellInit = ''
  14. eval "$(/opt/homebrew/bin/brew shellenv)"
  15. '';
  16. homebrew = {
  17. casks = [
  18. # "mac-mouse-fix"
  19. # "alacritty" # => we're using the home-manager package now
  20. # "bitwarden"
  21. # "brave-browser"
  22. # "docker"
  23. # "deepl"
  24. "ghostty"
  25. # "hot"
  26. # "ledger-live"
  27. # "mullvadvpn"
  28. "obsidian"
  29. "openaudible"
  30. "proton-drive"
  31. "proton-mail-bridge"
  32. "proton-pass"
  33. "protonvpn"
  34. "signal"
  35. # "tailscale"
  36. "tor-browser"
  37. "vlc"
  38. # "whatsapp"
  39. # "krunkit"
  40. ];
  41. masApps = {
  42. # "Bitwarden" = 1352778147;
  43. "Yubico Authenticator" = 1497506650;
  44. # "UTM Virtual Machines" = 1538878817; costs $9.99 in the app store
  45. # "Speechify" = 1624912180;
  46. # "DaVinci Resolve" = 571213070;
  47. # "Orbot" = 1609461599;
  48. # Safari Extensions
  49. # "AdGuard for Safari" = 1440147259;
  50. # "Bitwarden for Safari" = 1352778147;
  51. # "SimpleLogin" = 1494051017;
  52. # "Video Speed Controller" = 1588368612;
  53. # "Vimari" = 1480933944;
  54. # "XCode" = 497799835;
  55. };
  56. enable = true;
  57. onActivation.autoUpdate = true;
  58. onActivation.cleanup = "zap";
  59. };
  60. }