diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-03-23 15:32:59 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2023-03-23 15:32:59 +0100 |
commit | 168b6021c558f317fc01b142c1610742e9b9096b (patch) | |
tree | 2d2d11229306990be10b714a9615cfb6653a990e /src/libstore/local-store.md | |
parent | 7a61a9aba3154de7b18b6f83161149800625d3d4 (diff) |
Tweaks
Diffstat (limited to 'src/libstore/local-store.md')
-rw-r--r-- | src/libstore/local-store.md | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/libstore/local-store.md b/src/libstore/local-store.md index 580cf5358..8174df839 100644 --- a/src/libstore/local-store.md +++ b/src/libstore/local-store.md @@ -3,11 +3,10 @@ R"( **Store URL format**: `local`, *root* This store type accesses a Nix store in the local filesystem directly -(i.e. not via the Nix daemon). *root* is an absolute path that denotes -the "root" of the filesystem; other directories such as the Nix store -directory (as denoted by the `store` setting) are interpreted relative -to *root*. The store pseudo-URL `local` denotes a store that uses `/` -as its root directory. +(i.e. not via the Nix daemon). *root* is an absolute path that is +prefixed to other directories such as the Nix store directory. The +store pseudo-URL `local` denotes a store that uses `/` as its root +directory. A store that uses a *root* other than `/` is called a *chroot store*. With such stores, the store directory is "logically" still |