nix-community.nixvim/lib/default.nix

13 lines
283 B
Nix
Raw Normal View History

# Args probably only needs pkgs and lib
{
pkgs,
lib ? pkgs.lib,
_nixvimTests ? false,
...
2024-05-05 19:39:35 +02:00
}@args:
{
# Add all exported modules here
check = import ../tests/test-derivation.nix { inherit lib pkgs; };
2024-05-05 19:39:35 +02:00
helpers = import ./helpers.nix (args // { inherit _nixvimTests; });
}