nixpkgs-review

This commit is contained in:
2025-06-20 05:44:00 +02:00
parent 2021a7745a
commit 60e709431c
2 changed files with 19 additions and 1 deletions

View File

@@ -37,7 +37,7 @@ let
(final: prev: {
unstable = import inputs.unstable {
inherit system;
config = final.pkgs.config;
inherit (final.pkgs) config overlays;
};
})
];

View File

@@ -4,4 +4,22 @@
{
nix.package = lib.mkIf (pkgs ? lix) pkgs.lix;
# this also affect pkgs.unstable which inherits final.pkgs.overlays
nixpkgs.overlays = [
(final: prev: {
# oc
nixpkgs-review = prev.nixpkgs-review.override {
nix = prev.lix;
};
# pkgs/tools/package-management/lix/default.nix
nix-direnv = prev.nix-direnv.override {
nix = prev.lix;
};
})
]
;
}