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:
parent
c53e0161c3
commit
695b0b80f8
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@
|
||||||
nixvim = lib.makeOverridable ({ lib }: (lib.extend self.lib.overlay).nixvim) {
|
nixvim = lib.makeOverridable ({ lib }: (lib.extend self.lib.overlay).nixvim) {
|
||||||
inherit lib;
|
inherit lib;
|
||||||
};
|
};
|
||||||
overlay = lib.makeOverridable (import ../lib/overlay.nix) {
|
overlay = import ../lib/overlay.nix {
|
||||||
flake = self;
|
flake = self;
|
||||||
};
|
};
|
||||||
# Top-top-level aliases
|
# Top-top-level aliases
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue