mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 05:56:15 +02:00
fix links in stores overview
This commit is contained in:
parent
84fe429dfd
commit
59c4c82aeb
2 changed files with 6 additions and 5 deletions
|
@ -103,7 +103,8 @@ let
|
||||||
${allStores}
|
${allStores}
|
||||||
'';
|
'';
|
||||||
index = replaceStrings
|
index = replaceStrings
|
||||||
[ "@store-types@" ] [ storesOverview ]
|
[ "@store-types@" "./local-store.md" "./local-daemon-store.md" ]
|
||||||
|
[ storesOverview "#local-store" "#local-daemon-store" ]
|
||||||
details.doc;
|
details.doc;
|
||||||
storesOverview =
|
storesOverview =
|
||||||
let
|
let
|
||||||
|
|
|
@ -29,15 +29,15 @@ supported settings for each store type are documented below.
|
||||||
The special store URL `auto` causes Nix to automatically select a
|
The special store URL `auto` causes Nix to automatically select a
|
||||||
store as follows:
|
store as follows:
|
||||||
|
|
||||||
* Use the [local store](#local-store) `/nix/store` if `/nix/var/nix`
|
* Use the [local store](./local-store.md) `/nix/store` if `/nix/var/nix`
|
||||||
is writable by the current user.
|
is writable by the current user.
|
||||||
|
|
||||||
* Otherwise, if `/nix/var/nix/daemon-socket/socket` exists, [connect
|
* Otherwise, if `/nix/var/nix/daemon-socket/socket` exists, [connect
|
||||||
to the Nix daemon listening on that socket](#local-daemon-store).
|
to the Nix daemon listening on that socket](./local-daemon-store.md).
|
||||||
|
|
||||||
* Otherwise, on Linux only, use the [local chroot store](#local-store)
|
* Otherwise, on Linux only, use the [local chroot store](./local-store.md)
|
||||||
`~/.local/share/nix/root`, which will be created automatically if it
|
`~/.local/share/nix/root`, which will be created automatically if it
|
||||||
does not exist.
|
does not exist.
|
||||||
|
|
||||||
* Otherwise, use the [local store](#local-store) `/nix/store`.
|
* Otherwise, use the [local store](./local-store.md) `/nix/store`.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue