Eelco Dolstra 74e7ef35fe nix-daemon.nix: Add option nix.registry
This allows you to specify the system-wide flake registry. One use is
to pin 'nixpkgs' to the Nixpkgs version used to build the system:

  nix.registry.nixpkgs.flake = nixpkgs;

where 'nixpkgs' is a flake input. This ensures that commands like

  $ nix run nixpkgs#hello

pull in a minimum of additional store paths.

You can also use this to redirect flakes, e.g.

  nix.registry.nixpkgs.to = {
    type = "github";
    owner = "my-org";
    repo = "my-nixpkgs";
  };
2020-04-02 19:38:00 +02:00
..
2020-01-22 11:26:22 +01:00
2020-04-02 12:40:02 +01:00
2020-03-14 13:01:26 -07:00
2020-03-31 17:24:37 +03:00
2020-04-02 13:06:21 +01:00
2020-01-18 08:50:35 -05:00
2020-03-22 18:11:36 +01:00
2020-04-02 04:07:18 -04:00