Fediversity/services/flake-part.nix

15 lines
320 B
Nix
Raw Permalink Normal View History

2024-11-14 01:10:00 +01:00
{ self, ... }:
{
flake.nixosModules.fediversity = import ./fediversity;
perSystem =
{ pkgs, ... }:
{
checks = {
mastodon-garage = import ./tests/mastodon-garage.nix { inherit self pkgs; };
pixelfed-garage = import ./tests/pixelfed-garage.nix { inherit self pkgs; };
};
};
}