aboutsummaryrefslogtreecommitdiff
path: root/nix/hosts/common/homebrew.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/hosts/common/homebrew.nix')
-rw-r--r--nix/hosts/common/homebrew.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/nix/hosts/common/homebrew.nix b/nix/hosts/common/homebrew.nix
deleted file mode 100644
index 1ba4a93..0000000
--- a/nix/hosts/common/homebrew.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ ... }: {
- # 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"
- "iterm2"
- "transmission"
- "vlc"
- "wireshark"
- "zoom"
-
- # fonts
- "font-go"
- "font-source-code-pro"
- "font-source-sans-3"
- "font-source-serif-4"
- "font-dejavu"
- ];
- };
-}