1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-20 01:09:41 +01:00
nixvim/flake-modules/tests.nix
2024-12-15 17:44:56 +00:00

22 lines
249 B
Nix

{
self,
helpers,
...
}:
{
perSystem =
{
pkgs,
pkgsUnfree,
...
}:
{
checks = pkgs.callPackages ../tests {
inherit
helpers
pkgsUnfree
self
;
};
};
}