1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-14 22:42:41 +01:00

Add a system-wide flake registry /etc/nix/registry.json

One application for this is pinning the 'nixpkgs' flake to the exact
revision used to build the NixOS system, e.g.

  {
      "flakes": [
          {
              "from": {
                  "id": "nixpkgs",
                  "type": "indirect"
              },
              "to": {
                  "owner": "NixOS",
                  "repo": "nixpkgs",
                  "type": "github",
                  "rev": "b0c285807d6a9f1b7562ec417c24fa1a30ecc31a"
              }
          }
      ],
      "version": 2
  }
This commit is contained in:
Eelco Dolstra 2020-04-01 22:56:50 +02:00
parent 36c34c3b1f
commit 77ffaea4fa
3 changed files with 21 additions and 4 deletions

View file

@ -12,7 +12,8 @@ struct Registry
enum RegistryType {
Flag = 0,
User = 1,
Global = 2,
System = 2,
Global = 3,
};
RegistryType type;