2023-12-06 13:09:26 +01:00
|
|
|
{
|
|
|
|
perSystem = {
|
|
|
|
pkgs,
|
2024-01-05 14:14:43 +01:00
|
|
|
config,
|
2024-01-06 17:53:31 +01:00
|
|
|
system,
|
2023-12-06 13:09:26 +01:00
|
|
|
makeNixvimWithModuleUnfree,
|
|
|
|
makeNixvimWithModule,
|
|
|
|
...
|
|
|
|
}: {
|
2024-01-06 17:57:24 +01:00
|
|
|
checks = {
|
|
|
|
tests = import ../tests {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit (pkgs) lib;
|
|
|
|
makeNixvim = configuration:
|
|
|
|
makeNixvimWithModuleUnfree {
|
|
|
|
module = {
|
|
|
|
config = configuration;
|
2023-12-06 13:09:26 +01:00
|
|
|
};
|
2024-01-06 17:57:24 +01:00
|
|
|
};
|
|
|
|
};
|
2024-01-06 17:31:17 +01:00
|
|
|
|
2024-01-06 17:57:24 +01:00
|
|
|
extra-args-tests = import ../tests/extra-args.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit makeNixvimWithModule;
|
|
|
|
};
|
2024-01-06 17:53:31 +01:00
|
|
|
|
2024-01-06 17:57:24 +01:00
|
|
|
lib-tests = import ../tests/lib-tests.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit (pkgs) lib;
|
2024-01-06 17:53:31 +01:00
|
|
|
};
|
2024-01-06 17:57:24 +01:00
|
|
|
};
|
2023-12-06 13:09:26 +01:00
|
|
|
};
|
|
|
|
}
|