chore: nix 2.24 -> 2.25

This commit is contained in:
matt1432 2024-12-10 22:28:26 -05:00
parent 131299587c
commit 9aca532b78
10 changed files with 66 additions and 81 deletions
overlays/nix-version

View file

@ -0,0 +1,15 @@
{nix ? null}: (
final: prev:
builtins.mapAttrs
(n: v:
if nix == null
then prev.${n}
else v)
{
inherit nix;
nix-serve-ng = prev.nix-serve-ng.override {
inherit nix;
};
}
)