docs(tvix/store): move link hrefs to bottom

Change-Id: Id8e32ee4de98fbe48266d417279194cd93e968cb
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8222
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
Florian Klink 2023-03-05 14:13:57 +01:00 committed by flokli
parent bfb787a6c5
commit db8cebe0b4

View file

@ -134,11 +134,11 @@ There's three different services:
`BlobService` can be used to store and retrieve blobs of data, used to host `BlobService` can be used to store and retrieve blobs of data, used to host
regular file contents. regular file contents.
It is content-addressed, using [blake3](https://github.com/BLAKE3-team/BLAKE3) It is content-addressed, using [blake3][blake3]
as a hashing function. as a hashing function.
As blake3 is a tree hash, there's an opportunity to do As blake3 is a tree hash, there's an opportunity to do
[verified streaming](https://github.com/oconnor663/bao) of parts of the file, [verified streaming][bao] of parts of the file,
which doesn't need to trust any more information than the root hash itself. which doesn't need to trust any more information than the root hash itself.
Future extensions of the `BlobService` protocol will enable this. Future extensions of the `BlobService` protocol will enable this.
@ -270,6 +270,7 @@ access, which is very useful in remote builder scenarios.
[blake3]: https://github.com/BLAKE3-team/BLAKE3 [blake3]: https://github.com/BLAKE3-team/BLAKE3
[bao]: https://github.com/oconnor663/bao
[^input-addressed]: Nix hashes the A-Term representation of a .drv, after doing [^input-addressed]: Nix hashes the A-Term representation of a .drv, after doing
some replacements on refered Input Derivations to calculate some replacements on refered Input Derivations to calculate
output paths. output paths.