diff options
author | Ross Light <ross@zombiezen.com> | 2022-01-21 18:45:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 18:45:19 -0800 |
commit | 7477974b93240d0437c80aaf8646d8c838c948b5 (patch) | |
tree | d43d9a29b5d0d44a0712987b783a7339957dc0da | |
parent | 5f08db69d18ea5b868cbb58993822e7dd0307518 (diff) |
Correct NIX_BUILD_PATH default description
Source: https://github.com/NixOS/nix/blob/067076287bf601f8fa2ffe4feff3057b96fa5be8/src/nix-build/nix-build.cc#L362-L381
-rw-r--r-- | doc/manual/src/command-ref/nix-shell.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/manual/src/command-ref/nix-shell.md b/doc/manual/src/command-ref/nix-shell.md index 873311649..a2b6d8a8e 100644 --- a/doc/manual/src/command-ref/nix-shell.md +++ b/doc/manual/src/command-ref/nix-shell.md @@ -101,7 +101,8 @@ The following common options are supported: - `NIX_BUILD_SHELL`\ Shell used to start the interactive environment. Defaults to the - `bash` found in `PATH`. + `bash` found in `<nixpkgs>`, falling back to the `bash` found in + `PATH` if not found. # Examples |