diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-01-08 21:37:06 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-01-08 21:37:06 +0100 |
commit | 1d6816f98ca1746f0b627a6dee9c0adbbf7533c4 (patch) | |
tree | b5693684d13599d9aeb4392b3107f4cc10214b24 /guix/store.scm | |
parent | 80d0447c9556f06decc80a2d43c2fa8402406d91 (diff) |
config: '%store-directory' always honors $NIX_STORE_DIR.
* guix/config.scm.in (%store-directory): Honor $NIX_STORE_DIR.
* guix/store.scm (%store-prefix): Use %store-directory directly.
Diffstat (limited to 'guix/store.scm')
-rw-r--r-- | guix/store.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/store.scm b/guix/store.scm index 7715a15644..1012480b39 100644 --- a/guix/store.scm +++ b/guix/store.scm @@ -701,8 +701,7 @@ is true." (define %store-prefix ;; Absolute path to the Nix store. - (make-parameter (or (and=> (getenv "NIX_STORE_DIR") canonicalize-path) - %store-directory))) + (make-parameter %store-directory)) (define (store-path? path) "Return #t if PATH is a store path." |