aboutsummaryrefslogblamecommitdiff
path: root/nix/hosts/darwin/homebrew.nix
blob: 687bf2edbefca5ffc3c056746cbd262993e41f42 (plain) (tree)
1
2
3
4
5
6
7
8
9
          







                                                                        




                     
              






                    
{ ... }: {
  # Required for homebrew on aarch64
  environment.systemPath = [ "/opt/homebrew/bin" "/opt/homebrew/sbin" ];

  homebrew = {
    enable = true;
    onActivation.autoUpdate = true;
    onActivation.upgrade = true;

    casks = [
      "1password-cli"
      "docker"
      "element"
      "emacs"
      "iterm2"
      "transmission"
      "vlc"
      "wireshark"
      "zoom"
    ];
  };
}