diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-07-14 17:46:26 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-07-14 17:47:09 +0200 |
commit | ff49c75502845d9938f3a479f1696ee30d3b45b1 (patch) | |
tree | eb1da85d12a862516f57b6bf67cf02218b772137 /src | |
parent | 73ff9b863c479c79ee2dd73039504060b8483d0d (diff) |
Disable auto-chroot if $NIX_STORE_DIR is set
Fixes #6732.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/store-api.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index 05353bce2..45c53f23e 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -1321,7 +1321,7 @@ std::shared_ptr<Store> openFromNonUri(const std::string & uri, const Store::Para else if (pathExists(settings.nixDaemonSocketFile)) return std::make_shared<UDSRemoteStore>(params); #if __linux__ - else if (!pathExists(stateDir) && params.empty() && getuid() != 0) { + else if (!pathExists(stateDir) && params.empty() && getuid() != 0 && !getEnv("NIX_STORE_DIR").has_value()) { /* If /nix doesn't exist, there is no daemon socket, and we're not root, then automatically set up a chroot store in ~/.local/share/nix/root. */ |