From 357fbda2bb2400a52f8dec61b66342b92fa945ae Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 17 Nov 2024 11:16:44 -0800 Subject: move machine configurations under darwin and nixos Don't manage fonts on Darwin with homebrew. --- nix/hosts/common/homebrew.nix | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 nix/hosts/common/homebrew.nix (limited to 'nix/hosts/common/homebrew.nix') 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" - ]; - }; -} -- cgit v1.2.3