nix-community.nixvim/wrappers/standalone.nix
Luc Chabassier f2a103da30
Allow using global config with hm and nixos (#48)
* remove useless nixvim file

* reorganize flake outputs

* use global config file with home-manager and nixos
2022-10-17 14:08:17 +01:00

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