diff options
author | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-04-18 14:08:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-18 14:08:32 +0200 |
commit | 66e28e6343e6b68937aa8c4fe60189ea71989916 (patch) | |
tree | 6bdee0b271665143aa300465b2a6cbe1153bbbc3 | |
parent | e1e6119761bfa126585d3a02781d281297c183a9 (diff) | |
parent | 40fcb22313e65d1a57d0f6052ec046971ca07b8c (diff) |
Merge pull request #8236 from theutz/master
Update installing-binary.md
-rw-r--r-- | doc/manual/src/installation/installing-binary.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/manual/src/installation/installing-binary.md b/doc/manual/src/installation/installing-binary.md index e3fd962bd..525654d35 100644 --- a/doc/manual/src/installation/installing-binary.md +++ b/doc/manual/src/installation/installing-binary.md @@ -136,7 +136,7 @@ which you may remove. ### macOS -1. Edit `/etc/zshrc` and `/etc/bashrc` to remove the lines sourcing +1. Edit `/etc/zshrc`, `/etc/bashrc`, and `/etc/bash.bashrc` to remove the lines sourcing `nix-daemon.sh`, which should look like this: ```bash @@ -153,6 +153,7 @@ which you may remove. ```console sudo mv /etc/zshrc.backup-before-nix /etc/zshrc sudo mv /etc/bashrc.backup-before-nix /etc/bashrc + sudo mv /etc/bash.bashrc.backup-before-nix /etc/bash.bashrc ``` This will stop shells from sourcing the file and bringing everything you |