mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-25 11:49:40 +01:00
Not to be confused with the Nixvim-configuration `helpers` module arg, remove the flake-parts `helpers` module arg.
14 lines
225 B
Nix
14 lines
225 B
Nix
{ self, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
let
|
|
tests = pkgs.callPackage ../../tests {
|
|
inherit self;
|
|
};
|
|
in
|
|
{
|
|
checks = tests.flakeCheck;
|
|
ci.buildbot = tests.buildbot;
|
|
};
|
|
}
|