Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a059fc742022
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 183919a0c072
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 20, 2019

  1. Copy the full SHA
    9f3fe63 View commit details

Commits on Feb 21, 2019

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

    nixos-nix-serve: Add some hint on howto get valid signing keys.
    Mic92 authored Feb 21, 2019
    Copy the full SHA
    183919a View commit details
Showing with 9 additions and 0 deletions.
  1. +9 −0 nixos/modules/services/networking/nix-serve.nix
9 changes: 9 additions & 0 deletions nixos/modules/services/networking/nix-serve.nix
Original file line number Diff line number Diff line change
@@ -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>.
'';
};