diff options
Diffstat (limited to 'scripts/nix-install-package.in')
-rw-r--r-- | scripts/nix-install-package.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/nix-install-package.in b/scripts/nix-install-package.in index 9f848b16dcbf..f40cfc7d0b23 100644 --- a/scripts/nix-install-package.in +++ b/scripts/nix-install-package.in @@ -124,8 +124,11 @@ if ($interactive) { # Store the manifest in the temporary directory so that we don't -# pollute /nix/var/nix/manifests. +# pollute /nix/var/nix/manifests. This also requires that we don't +# use the Nix daemon (because otherwise download-using-manifests won't +# see our NIX_MANIFESTS_DIRS environment variable). $ENV{NIX_MANIFESTS_DIR} = $tmpDir; +$ENV{NIX_REMOTE} = ""; print "\nPulling manifests...\n"; |