feat: update for shells

This commit is contained in:
Ryan Yin
2023-12-22 16:59:34 +08:00
parent 217057612c
commit 1817f41423
7 changed files with 37 additions and 38 deletions

10
home/darwin/shell.nix Normal file
View File

@@ -0,0 +1,10 @@
_: {
# add homebrew into PATH
programs.bash.bashrcExtra = ''
export PATH="/opt/homebrew/bin:$PATH"
'';
programs.zsh.envExtra = ''
export PATH="/opt/homebrew/bin:$PATH"
'';
}