1
0

software.nix 1.5 KB

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