aboutsummaryrefslogblamecommitdiff
path: root/nix/hosts/darwin/homebrew.nix
blob: 52543dad5838fd8dd6224032394bbf44a2a99e9c (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"
    ];
  };
}