forked from Fediversity/Fediversity
36 lines
868 B
Nix
36 lines
868 B
Nix
{ inputs, sources, ... }:
|
|
|
|
{
|
|
_class = "flake";
|
|
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
checks = {
|
|
deployment-basic = import ./check/basic {
|
|
inherit (pkgs.testers) runNixOSTest;
|
|
inherit inputs sources;
|
|
};
|
|
|
|
deployment-cli = import ./check/cli {
|
|
inherit (pkgs.testers) runNixOSTest;
|
|
inherit inputs sources;
|
|
};
|
|
|
|
deployment-panel = import ./check/panel {
|
|
inherit (pkgs.testers) runNixOSTest;
|
|
inherit inputs sources;
|
|
};
|
|
|
|
deployment-model-ssh = import ./check/data-model-ssh {
|
|
inherit (pkgs.testers) runNixOSTest;
|
|
inherit inputs sources;
|
|
};
|
|
|
|
deployment-model-nixops4 = import ./check/data-model-nixops4 {
|
|
inherit (pkgs.testers) runNixOSTest;
|
|
inherit inputs sources;
|
|
};
|
|
};
|
|
};
|
|
}
|