mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-29 10:20:52 -05:00
Migrate flake outputs, config files, etc from buildbot-nix to nixbot. This is not urgent, because nixbot falls back to buildbot-nix.toml when nixbot.toml is missing.
15 lines
221 B
Nix
15 lines
221 B
Nix
{ self, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
let
|
|
tests = pkgs.callPackage ../../tests {
|
|
inherit self;
|
|
};
|
|
in
|
|
{
|
|
checks = tests.flakeCheck;
|
|
ci.nixbot = tests.nixbot;
|
|
};
|
|
}
|