buildbot-nix/nix/checks/flake-module.nix

17 lines
352 B
Nix
Raw Normal View History

{ self, ... }: {
perSystem =
{ pkgs
, ...
}: {
checks =
let
# this gives us a reference to our flake but also all flake inputs
checkArgs = { inherit self pkgs; };
in
{
master = import ./master.nix checkArgs;
2023-11-04 12:48:58 +00:00
worker = import ./worker.nix checkArgs;
};
};
}