mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
lib: export evalNixvim
as top-level alias
- `lib.nixvim.evalNixvim` - `<nixvim>.lib.evalNixvim` (flake output)
This commit is contained in:
parent
e793c5cdc6
commit
a70b16976b
2 changed files with 8 additions and 0 deletions
|
@ -21,6 +21,10 @@
|
||||||
overlay = lib.makeOverridable (import ../lib/overlay.nix) {
|
overlay = lib.makeOverridable (import ../lib/overlay.nix) {
|
||||||
flake = self;
|
flake = self;
|
||||||
};
|
};
|
||||||
|
# Top-top-level aliases
|
||||||
|
inherit (self.lib.nixvim)
|
||||||
|
evalNixvim
|
||||||
|
;
|
||||||
}
|
}
|
||||||
// lib.genAttrs config.systems (
|
// lib.genAttrs config.systems (
|
||||||
lib.flip withSystem (
|
lib.flip withSystem (
|
||||||
|
|
|
@ -44,6 +44,10 @@ lib.makeExtensible (
|
||||||
transitionType
|
transitionType
|
||||||
;
|
;
|
||||||
|
|
||||||
|
inherit (self.modules)
|
||||||
|
evalNixvim
|
||||||
|
;
|
||||||
|
|
||||||
inherit (self.options)
|
inherit (self.options)
|
||||||
defaultNullOpts
|
defaultNullOpts
|
||||||
mkAutoLoadOption
|
mkAutoLoadOption
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue