2023-03-03 09:18:52 +00:00
|
|
|
# Args probably only needs pkgs and lib
|
2023-05-15 11:04:52 +02:00
|
|
|
{
|
|
|
|
makeNixvim,
|
2024-02-15 14:27:45 +01:00
|
|
|
makeNixvimWithModule,
|
2023-05-15 11:04:52 +02:00
|
|
|
pkgs,
|
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
|
2023-05-15 11:04:52 +02:00
|
|
|
check = import ../tests/test-derivation.nix {
|
2024-02-15 14:27:45 +01:00
|
|
|
inherit makeNixvim makeNixvimWithModule pkgs;
|
2023-05-15 11:04:52 +02:00
|
|
|
};
|
2024-02-21 14:40:49 -08:00
|
|
|
helpers = import ./helpers.nix (args // {inherit _nixvimTests;});
|
2023-03-03 09:18:52 +00:00
|
|
|
}
|