|
xrpld
|
Common issues encountered when using the Nix development shell, and how to resolve them.
If a shell suddenly can't find nix at all:
then Nix is almost certainly still installed — only the shell hook that puts it on your PATH is gone. Confirm that first:
If that exists, the installation is fine and this is purely a PATH problem.
The installer does not touch your dotfiles. Instead it sources a setup script from the Nix store by editing system-wide rc files:
| Shell | File the installer edits |
|---|---|
| bash | /etc/bashrc, /etc/bash.bashrc |
| zsh | /etc/zshrc |
| fish | $__fish_sysconf_dir/conf.d/nix.fish |
macOS manages /etc/zshrc, so an OS update can replace it with the vendor copy and silently drop the Nix block. /etc/bashrc and the fish file usually survive, which is why the breakage often shows up in zsh only. You can verify this by diffing against the backup the installer left behind:
If they are identical, the Nix snippet was wiped. This is upstream issue NixOS/nix#3616.
To unblock the current shell:
For a permanent fix, add the snippet to your user rc file rather than restoring /etc/zshrc — user dotfiles are not clobbered by OS updates:
The scripts guard against double-sourcing via __ETC_PROFILE_NIX_SOURCED, so this is safe even if a system-wide hook is later restored.
If nix develop fails with an error like:
then your Nix is linked against a libgit2 older than 1.9.4. Git 2.48+ writes the extensions.relativeWorktrees config entry when a worktree is created with relative paths (git worktree add --relative-paths, or with worktree.useRelativePaths=true), and older libgit2 versions refuse to open a repository that uses it. Nix uses libgit2 to read the flake, so evaluation fails.
These work today, with any Nix version:
The fix is in libgit2 1.9.4, so the real solution is a Nix that links against libgit2 1.9.4 or newer. Check which version yours links against:
nixpkgs has already rebuilt Nix against the fixed libgit2 (e.g. nix-2.34.7+1), so the cleanest path is to reinstall Nix using your usual installation method once it picks up that rebuild, then re-run the grep libgit2 check above to confirm it reports 1.9.4 or newer.
Until then, prefer the workarounds above.