forked from Fediversity/Fediversity
closes #34. Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io> Reviewed-on: Fediversity/Fediversity#457 Reviewed-by: Valentin Gagarin <valentin.gagarin@tweag.io> Co-authored-by: Kiara Grouwstra <kiara@procolix.eu> Co-committed-by: Kiara Grouwstra <kiara@procolix.eu>
14 lines
342 B
Nix
14 lines
342 B
Nix
{ ... }:
|
|
{
|
|
_class = "flake";
|
|
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
checks = {
|
|
test-mastodon-service = pkgs.testers.runNixOSTest ./mastodon.nix;
|
|
test-pixelfed-garage-service = pkgs.testers.runNixOSTest ./pixelfed-garage.nix;
|
|
test-peertube-service = pkgs.testers.runNixOSTest ./peertube.nix;
|
|
};
|
|
};
|
|
}
|