From ab63f2eb09ed6633a7fad7a1a72b60bb14d5c85c Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sun, 9 Jul 2023 14:22:15 +0300 Subject: 2023-07-09 --- modules/darwin/homebrew.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'modules/darwin/homebrew.nix') 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"; -- cgit v1.2.3