From 1ce502e33d2b1f0f85ed6dc4724a672a80fbbcce Mon Sep 17 00:00:00 2001 From: YouSiki Date: Mon, 16 Dec 2024 12:22:00 +0800 Subject: [PATCH] Fix typo --- modules/darwin/system/homebrew/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/darwin/system/homebrew/default.nix b/modules/darwin/system/homebrew/default.nix index c3dc95e..6bc8d41 100644 --- a/modules/darwin/system/homebrew/default.nix +++ b/modules/darwin/system/homebrew/default.nix @@ -42,6 +42,6 @@ in { }; # Add homebrew to PATH. - environment.systemPath = lib.optional (system == "aarch64-darwin") "/opt/homebrew"; + environment.systemPath = lib.optional (system == "aarch64-darwin") "/opt/homebrew/bin"; }; }