diff options
author | Adam Joseph <adam@westernsemico.com> | 2022-08-05 10:12:46 -0700 |
---|---|---|
committer | Adam Joseph <adam@westernsemico.com> | 2022-08-05 10:12:46 -0700 |
commit | aae771cad26a3803ef0a0855c782823d22949cf3 (patch) | |
tree | ca8b63e856ab1c45b7a930eabe306f421b748ff6 /doc/manual | |
parent | 1b97f3872ed70d9ad5d19d27dc56b42ba4d26382 (diff) |
!implement https://github.com/NixOS/nix/pull/6870#discussion_r938912244
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/src/package-management/terminology.md | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/manual/src/package-management/terminology.md b/doc/manual/src/package-management/terminology.md index 6ad0f6833..241bb6c5a 100644 --- a/doc/manual/src/package-management/terminology.md +++ b/doc/manual/src/package-management/terminology.md @@ -18,11 +18,10 @@ keep metadata and signatures in `.narinfo` files rather than in `/nix/var/nix/db`. A *substituter* is a store other than `/nix/store` from which Nix will -copy the realisation of a derivation instead of building it. Nix will -not copy a realisation from a remote store unless one of the following -is true: +copy a store path instead of building it. Nix will not copy a store +path from a remote store unless one of the following is true: -- the realisation is signed by one of the `trusted-public-keys` +- the store object is signed by one of the `trusted-public-keys` - the substituter is in the `trusted-substituters` list - the `no-require-sigs` option has been set to disable signature checking -- the derivation is a fixed-output derivation +- the store object is the realisation of a fixed-output derivation |