2023-04-26 09:45:00 +01:00
|
|
|
# nix registry
|
|
|
|
|
|
|
|
> Manage a Nix flake registry.
|
2024-06-03 21:21:58 +01:00
|
|
|
> See also: `nix3 flake` for information about flakes.
|
2023-04-26 09:45:00 +01:00
|
|
|
> More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-registry.html>.
|
|
|
|
|
|
|
|
- Pin the `nixpkgs` revision to the current version of the upstream repository:
|
|
|
|
|
|
|
|
`nix registry pin {{nixpkgs}}`
|
|
|
|
|
2024-03-14 05:01:06 +00:00
|
|
|
- Pin an entry to the latest version of the branch, or a particular reivision of a GitHub repository:
|
2023-04-26 09:45:00 +01:00
|
|
|
|
|
|
|
`nix registry pin {{entry}} {{github:owner/repo/branch_or_revision}}`
|
|
|
|
|
2024-03-14 05:01:06 +00:00
|
|
|
- Add a new entry that always points to the latest version of a GitHub repository, updating automatically:
|
2023-04-26 09:45:00 +01:00
|
|
|
|
|
|
|
`nix registry add {{entry}} {{github:owner/repo}}`
|
|
|
|
|
|
|
|
- Remove a registry entry:
|
|
|
|
|
|
|
|
`nix registry remove {{entry}}`
|
|
|
|
|
|
|
|
- See documentation about what Nix flake registries are:
|
|
|
|
|
|
|
|
`nix registry --help`
|