2023-03-03 09:18:52 +00:00
|
|
|
# Args probably only needs pkgs and lib
|
2023-05-15 11:04:52 +02:00
|
|
|
{
|
2024-02-15 14:27:45 +01:00
|
|
|
makeNixvimWithModule,
|
2023-05-15 11:04:52 +02:00
|
|
|
pkgs,
|
2024-08-20 00:30:16 +01:00
|
|
|
lib ? pkgs.lib,
|
2024-02-21 14:40:49 -08:00
|
|
|
_nixvimTests ? false,
|
2023-05-15 11:04:52 +02:00
|
|
|
...
|
|
|
|
}@args:
|
|
|
|
{
|
2023-03-03 09:18:52 +00:00
|
|
|
# Add all exported modules here
|
2024-08-20 00:30:16 +01:00
|
|
|
check = import ../tests/test-derivation.nix { inherit makeNixvimWithModule lib pkgs; };
|
2024-02-21 14:40:49 -08:00
|
|
|
helpers = import ./helpers.nix (args // { inherit _nixvimTests; });
|
2023-03-03 09:18:52 +00:00
|
|
|
}
|