1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-21 17:59:41 +01:00

lib/overlay: remove overridability

The lib-overlay was previously wrapped using `makeOverridable`, but its
only input is the flake itself, which is not intended to be overridden.

Remove the wrapper and expose the overlay as a plain function.
This commit is contained in:
Matt Sturgeon 2025-11-20 02:49:55 +00:00
parent c53e0161c3
commit 695b0b80f8

View file

@ -16,7 +16,7 @@
nixvim = lib.makeOverridable ({ lib }: (lib.extend self.lib.overlay).nixvim) {
inherit lib;
};
overlay = lib.makeOverridable (import ../lib/overlay.nix) {
overlay = import ../lib/overlay.nix {
flake = self;
};
# Top-top-level aliases