about summary refs log tree commit diff
path: root/modules/darwin/homebrew.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/darwin/homebrew.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/darwin/homebrew.nix b/modules/darwin/homebrew.nix
index f0bec9b..2667828 100644
--- a/modules/darwin/homebrew.nix
+++ b/modules/darwin/homebrew.nix
@@ -9,13 +9,18 @@ in {
   options.nixfiles.modules.homebrew.enable = mkEnableOption "Homebrew";
 
   config = mkIf cfg.enable {
+    hm.programs.bash.initExtra = mkAfter ''
+      if [ -x "/opt/homebrew/bin/brew" ]; then
+        export PATH="$PATH:/opt/homebrew/bin"
+      fi
+    '';
+
     # This option requires an installed Homebrew[1].
     #
     # [1]: https://daiderd.com/nix-darwin/manual/index.html#opt-homebrew.enable
     # [1]: https://brew.sh
     homebrew = {
       enable = true;
-      taps = [];
       onActivation = {
         autoUpdate = true;
         cleanup = "zap";

Consider giving Nix/NixOS a try! <3