forked from Fediversity/Fediversity
13 lines
254 B
Nix
13 lines
254 B
Nix
{ ... }:
|
|
{
|
|
_class = "flake";
|
|
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
checks = {
|
|
test-mastodon-service = pkgs.testers.runNixOSTest ./mastodon.nix;
|
|
test-peertube-service = pkgs.testers.runNixOSTest ./peertube.nix;
|
|
};
|
|
};
|
|
}
|