nix-community.nixvim/flake-modules/tests.nix

28 lines
305 B
Nix
Raw Normal View History

{
self,
lib,
helpers,
...
}:
2024-05-05 19:39:35 +02:00
{
perSystem =
{
pkgs,
pkgsUnfree,
2024-05-05 19:39:35 +02:00
system,
...
}:
{
checks = import ../tests {
inherit
helpers
lib
pkgs
pkgsUnfree
self
system
;
};
};
}