mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
* remove useless nixvim file * reorganize flake outputs * use global config file with home-manager and nixos
13 lines
213 B
Nix
13 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
|