flake: overlays: use 'lib'

It's a `lib` function, not _really_ a Nixpkgs one.

Also it's about to break after the next flake update :-).
This commit is contained in:
Bruno BELANYI 2025-11-06 14:39:11 +00:00
parent 983bf0f764
commit 41c506749e

View file

@ -1,4 +1,4 @@
{ self, ... }:
{ self, lib, ... }:
let
default-overlays = import "${self}/overlays";
@ -8,7 +8,7 @@ let
# Expose my custom packages
pkgs = _final: prev: {
ambroisie = prev.recurseIntoAttrs (import "${self}/pkgs" { pkgs = prev; });
ambroisie = lib.recurseIntoAttrs (import "${self}/pkgs" { pkgs = prev; });
};
};
in