nix-community.nixvim/flake-modules/helpers.nix

16 lines
278 B
Nix
Raw Normal View History

{getHelpers, ...}: {
_module.args.getHelpers = pkgs: _nixvimTests:
import ../lib/helpers.nix {
inherit pkgs _nixvimTests;
inherit (pkgs) lib;
};
perSystem = {
pkgs,
config,
...
}: {
_module.args.helpers = getHelpers pkgs false;
};
}