diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-03-23 10:12:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-23 10:12:57 +0100 |
commit | abc449bc30bd0c8e2aaaa7840e83237729e9af19 (patch) | |
tree | bd4dddee5a0689c28997c62ef5d492bf376f7fa4 /src | |
parent | 4d31618c15ea648fa89b6e1c21d50f6c329f160d (diff) |
Update src/libstore/local-store.md
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/local-store.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.md b/src/libstore/local-store.md index 893457d32..580cf5358 100644 --- a/src/libstore/local-store.md +++ b/src/libstore/local-store.md @@ -13,7 +13,7 @@ A store that uses a *root* other than `/` is called a *chroot store*. With such stores, the store directory is "logically" still `/nix/store`, so programs stored in them can only be built and executed by `chroot`-ing into *root*. Chroot stores only support -building and running on Linux when mount and user namespaces are +building and running on Linux when [`mount namespaces`](https://man7.org/linux/man-pages/man7/mount_namespaces.7.html) and [`user namespaces`](https://man7.org/linux/man-pages/man7/user_namespaces.7.html) are enabled. For example, the following uses `/tmp/root` as the chroot environment |