Files
nix-config/home/darwin/shell.nix
2023-12-22 16:59:56 +08:00

11 lines
193 B
Nix

_: {
# add homebrew into PATH
programs.bash.bashrcExtra = ''
export PATH="/opt/homebrew/bin:$PATH"
'';
programs.zsh.envExtra = ''
export PATH="/opt/homebrew/bin:$PATH"
'';
}