mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
33 lines
647 B
Nix
33 lines
647 B
Nix
{
|
|
perSystem = {
|
|
pkgs,
|
|
config,
|
|
system,
|
|
makeNixvimWithModuleUnfree,
|
|
makeNixvimWithModule,
|
|
...
|
|
}: {
|
|
checks = {
|
|
tests = import ../tests {
|
|
inherit pkgs;
|
|
inherit (pkgs) lib;
|
|
makeNixvim = configuration:
|
|
makeNixvimWithModuleUnfree {
|
|
module = {
|
|
config = configuration;
|
|
};
|
|
};
|
|
};
|
|
|
|
extra-args-tests = import ../tests/extra-args.nix {
|
|
inherit pkgs;
|
|
inherit makeNixvimWithModule;
|
|
};
|
|
|
|
lib-tests = import ../tests/lib-tests.nix {
|
|
inherit pkgs;
|
|
inherit (pkgs) lib;
|
|
};
|
|
};
|
|
};
|
|
}
|