Merge pull request #56004 from eskimor/add-nix-serve-help

nixos-nix-serve: Add some hint on howto get valid signing keys.
This commit is contained in:
Jörg Thalheim 2019-02-21 09:43:50 +00:00 committed by GitHub
commit 183919a0c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,6 +31,15 @@ in
default = null;
description = ''
The path to the file used for signing derivation data.
Generate with:
```
nix-store --generate-binary-cache-key key-name secret-key-file public-key-file
```
Make sure user `nix-serve` has read access to the private key file.
For more details see <citerefentry><refentrytitle>nix-store</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
'';
};