nix-community.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;
};
};
}