Reputation: 857
I deleted /nix and started a fresh install of nix, however after installing nix install nix (MACBook Pro M1 arm64 BigSur) with sh <(curl -L https://nixos.org/nix/install)
I run $ nix
but I get the output zsh: command not found: nix
, same for nix-shell
also the /nix volume is not created, I also tried the instruction at https://docs.plutus-community.com/docs/setup/MacOS.html still same issue
Upvotes: 20
Views: 15284
Reputation: 2407
Open /etc/zshrc
and look for the following lines (probably at the end of the file):
# Nix
if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then
. '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
fi
# End Nix
Copy these lines and delete them from this file.
Open ~/.zshrc
and add the above copied lines to the end of this file
Reboot terminal and nix should work now.
Upvotes: 37