forked from Fediversity/Fediversity
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;
|
|
};
|
|
};
|
|
}
|