checks: init

This commit is contained in:
Max Headroom 2022-05-31 11:38:38 +02:00
parent 13171b7657
commit 65f7730c45
4 changed files with 11 additions and 1 deletions

View file

@ -119,6 +119,8 @@
packages = forSystems (system: depot.${system}.packages);
checks = forSystems (system: depot.${system}.checks);
devShells = forSystems (system: depot.${system}.devShells);
effects = { branch, ... }: mkDeployEffects branch deployableNixosHosts;

View file

@ -12,5 +12,5 @@ in {
filters ? "${name}" -> builtins.elem system filters."${name}"
) all;
inherit (projects) devShells;
inherit (projects) devShells checks;
}

View file

@ -67,6 +67,8 @@ in
stevenblack-hosts = pkgs.callPackage ./data/stevenblack { inherit pins; };
};
checks = import ./tests { inherit inputs pkgs system; };
devShells = {
default = let
flakePkgs = inputs.self.packages.${system};

View file

@ -0,0 +1,6 @@
{ inputs, pkgs, system }:
let
inherit (pkgs) nixosTest;
in
{
}