mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-13 08:01:49 +00:00

Co-authored-by: Rhys Arkins <rhys@arkins.net> Co-authored-by: Michael Kriese <michael.kriese@gmx.de> Co-authored-by: Mathieu Fenniak <mathieu@fenniak.net> Co-authored-by: Mathieu Fenniak <biziqe@mathieu.fenniak.net>
9 lines
637 B
Markdown
9 lines
637 B
Markdown
The [`nix`](https://github.com/NixOS/nix) manager supports:
|
|
|
|
- [`lockFileMaintenance`](../../../configuration-options.md#lockfilemaintenance) updates for `flake.lock`
|
|
- input updates for `flake.lock`
|
|
|
|
For specifying `packageRules` it is important to know how `depName` and `packageName` are defined for nix updates:
|
|
|
|
- The `depName` field is equal to the nix flake input name, eg. `nix.inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";` would have the `depName` of `nixpkgs`
|
|
- The `packageName` field is equal to the fully-qualified root URL of the package source, eg. `https://github.com/NixOS/nixpkgs` for the above example.
|