1
0

software.nix 1.5 KB

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