From 671d8c72430e9a51489d50dfac870b8ad5008576 Mon Sep 17 00:00:00 2001 From: Tobias Ostner Date: Sun, 18 Feb 2024 10:44:17 +0100 Subject: [PATCH] Fix homebrew is not on path --- .config/nix/home/zsh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/nix/home/zsh.nix b/.config/nix/home/zsh.nix index 4b9147d..12cb198 100644 --- a/.config/nix/home/zsh.nix +++ b/.config/nix/home/zsh.nix @@ -3,6 +3,9 @@ programs.zsh = { enable = true; enableCompletion = true; + initExtra = '' + eval "$(/opt/homebrew/bin/brew shellenv)" + ''; syntaxHighlighting.enable = true; shellAliases = { ls = "ls --color=auto -F";