1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/flake/tests.nix
2025-01-19 12:55:15 +00:00

14 lines
163 B
Nix

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