fix: Enable helpers to be passed as an argument in nixvim (#688)

With this change `helpers` can be imported using `{pkgs, lib, helpers,
...}` instead of requiring to `import` it.
This commit is contained in:
traxys 2023-11-05 18:34:32 +01:00 committed by GitHub
parent 1e91231e86
commit 2031834990
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@
packages =
{
docs = pkgs-unfree.callPackage (import ./docs) {
modules = nixvimModules;
modules = modules pkgs;
};
}
// (import ./helpers pkgs);