mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 14:06:16 +02:00
update glossary entry on store types
the interesting information is on the proper pages, and is now presented a bit more prominently. the paragraph was a bit confusing to read, also because an anchor link to an inline definition was in the middle of the sentence. "local store" now has its own glossary entry.
This commit is contained in:
parent
9d87f25673
commit
ce19338f9f
1 changed files with 13 additions and 10 deletions
|
@ -59,18 +59,21 @@
|
||||||
|
|
||||||
- [store]{#gloss-store}
|
- [store]{#gloss-store}
|
||||||
|
|
||||||
A collection of store objects, with operations to manipulate that collection.
|
A collection of [store objects][store object], with operations to manipulate that collection.
|
||||||
See [Nix store](./store/index.md) for details.
|
See [Nix Store](./store/index.md) for details.
|
||||||
|
|
||||||
There are many types of stores.
|
There are many types of stores, see [Store Types](./store/types/index.md) for details.
|
||||||
See [`nix help-stores`](@docroot@/command-ref/new-cli/nix3-help-stores.md) for a complete list.
|
|
||||||
|
|
||||||
From the perspective of the location where Nix is invoked, the Nix store can be referred to _local_ or _remote_.
|
|
||||||
Only a [local store]{#gloss-local-store} exposes a location in the file system of the machine where Nix is invoked that allows access to store objects, typically `/nix/store`.
|
|
||||||
Local stores can be used for building [derivations](#gloss-derivation).
|
|
||||||
See [Local Store](@docroot@/command-ref/new-cli/nix3-help-stores.md#local-store) for details.
|
|
||||||
|
|
||||||
[store]: #gloss-store
|
[store]: #gloss-store
|
||||||
|
|
||||||
|
- [local store]{#gloss-local-store}
|
||||||
|
|
||||||
|
From the perspective of the location where Nix is invoked, the Nix [store] can be referred to _local_ or _remote_.
|
||||||
|
Only a local store exposes a file system directory, typically `/nix/store`, to allow operating system processes to directly access store objects.
|
||||||
|
Local stores can be used for building [derivations][derivation].
|
||||||
|
|
||||||
|
See [Local Store](@docroot@/command-ref/new-cli/nix3-help-stores.md#local-store) for details.
|
||||||
|
|
||||||
[local store]: #gloss-local-store
|
[local store]: #gloss-local-store
|
||||||
|
|
||||||
- [chroot store]{#gloss-chroot-store}
|
- [chroot store]{#gloss-chroot-store}
|
||||||
|
@ -87,7 +90,7 @@
|
||||||
|
|
||||||
- [store path]{#gloss-store-path}
|
- [store path]{#gloss-store-path}
|
||||||
|
|
||||||
The location of a [store object](@docroot@/store/index.md#store-object) in the file system, i.e., an immediate child of the Nix store directory.
|
The location of a [store object] in the file system, i.e., an immediate child of the Nix store directory.
|
||||||
|
|
||||||
> **Example**
|
> **Example**
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue