mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
14 lines
213 B
Nix
14 lines
213 B
Nix
|
pkgs: modules: configuration:
|
||
|
|
||
|
let
|
||
|
|
||
|
inherit (pkgs) lib;
|
||
|
|
||
|
wrap = { wrapRc = true; };
|
||
|
|
||
|
eval = lib.evalModules {
|
||
|
modules = modules ++ [ { config = configuration; } wrap ];
|
||
|
};
|
||
|
|
||
|
in eval.config.finalPackage
|