1
0

software.nix 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. unstable.keymapp
  11. ];
  12. environment.shellInit = ''
  13. eval "$(/opt/homebrew/bin/brew shellenv)"
  14. '';
  15. homebrew = {
  16. casks = [
  17. # "android-studio"
  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. "orbstack"
  31. "proton-drive"
  32. "proton-mail-bridge"
  33. "proton-pass"
  34. "protonvpn"
  35. "signal"
  36. "tailscale-app"
  37. # "tor-browser"
  38. # "utm"
  39. "vlc"
  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. global.autoUpdate = true;
  60. onActivation.autoUpdate = true;
  61. onActivation.cleanup = "zap";
  62. };
  63. }