about summary refs log tree commit diff
path: root/nix/hosts/common/homebrew.nix
blob: db9be7606d19ecf1e6047ea3f304d62e083da9eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ ... }:
{
  # Required for homebrew on aarch64
  environment.systemPath = [ "/opt/homebrew/bin" "/opt/homebrew/sbin" ];

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

    brews = [
      "go" # it's also installed by nix, but this is a fallback, just in case

      # various hashicorp related tools
      "hashicorp/tap/boundary" # https://www.boundaryproject.io/
      "hashicorp/tap/nomad-pack"

      # kubernetes stuff
      "kind" # to run local k8s cluster
      "kubebuilder"
    ];

    taps = [
      "homebrew/cask-fonts"
      "hashicorp/tap"
    ];

    casks = [
      "1password-cli"
      "docker"
      "element"
      "emacs"
      "font-monaspace" # https://github.com/githubnext/monaspace
      "font-source-code-pro"
      "iterm2"
      "netnewswire"
      "transmission"
      "vlc"
      "wireshark"
      "zoom"
    ];
  };
}