2024-11-14 01:10:00 +01:00
|
|
|
{ self, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
flake.nixosModules.fediversity = import ./fediversity;
|
|
|
|
|
|
|
|
perSystem =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
checks = {
|
2024-11-27 12:34:30 +01:00
|
|
|
mastodon = import ./tests/mastodon.nix { inherit self pkgs; };
|
2024-11-14 01:10:00 +01:00
|
|
|
pixelfed-garage = import ./tests/pixelfed-garage.nix { inherit self pkgs; };
|
2024-12-17 17:15:11 +01:00
|
|
|
peertube = import ./tests/peertube.nix { inherit self pkgs; };
|
2024-11-14 01:10:00 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|