1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/lib/default.nix
2024-05-05 22:00:40 +02:00

13 lines
331 B
Nix

# Args probably only needs pkgs and lib
{
makeNixvim,
makeNixvimWithModule,
pkgs,
_nixvimTests ? false,
...
}@args:
{
# Add all exported modules here
check = import ../tests/test-derivation.nix { inherit makeNixvim makeNixvimWithModule pkgs; };
helpers = import ./helpers.nix (args // { inherit _nixvimTests; });
}