1
0

software.nix 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "android-studio"
  19. # "mac-mouse-fix"
  20. # "alacritty" # => we're using the home-manager package now
  21. # "bitwarden"
  22. # "brave-browser"
  23. # "docker"
  24. # "deepl"
  25. "ghostty"
  26. # "hot"
  27. # "ledger-live"
  28. # "mullvadvpn"
  29. "obsidian"
  30. "openaudible"
  31. "proton-drive"
  32. "proton-mail-bridge"
  33. "proton-pass"
  34. "protonvpn"
  35. "signal"
  36. # "tailscale"
  37. "tor-browser"
  38. "vlc"
  39. "zen-browser"
  40. # "whatsapp"
  41. # "krunkit"
  42. ];
  43. masApps = {
  44. # "Bitwarden" = 1352778147;
  45. "Yubico Authenticator" = 1497506650;
  46. # "UTM Virtual Machines" = 1538878817; costs $9.99 in the app store
  47. # "Speechify" = 1624912180;
  48. # "DaVinci Resolve" = 571213070;
  49. # "Orbot" = 1609461599;
  50. # Safari Extensions
  51. # "AdGuard for Safari" = 1440147259;
  52. # "Bitwarden for Safari" = 1352778147;
  53. # "SimpleLogin" = 1494051017;
  54. # "Video Speed Controller" = 1588368612;
  55. # "Vimari" = 1480933944;
  56. # "XCode" = 497799835;
  57. };
  58. enable = true;
  59. onActivation.autoUpdate = true;
  60. onActivation.cleanup = "zap";
  61. };
  62. }