mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
12 lines
266 B
Nix
12 lines
266 B
Nix
# Args probably only needs pkgs and lib
|
|
{
|
|
pkgs,
|
|
lib ? pkgs.lib,
|
|
_nixvimTests ? false,
|
|
...
|
|
}@args:
|
|
{
|
|
# Add all exported modules here
|
|
check = import ./tests.nix { inherit lib pkgs; };
|
|
helpers = import ./helpers.nix (args // { inherit _nixvimTests; });
|
|
}
|