fediversity/services/flake-part.nix
Nicolas “Niols” Jeannerod 51c3ec754f
All checks were successful
/ check-pre-commit (pull_request) Successful in 25s
Rename the test simply “mastodon”
2024-11-27 12:39:26 +01:00

14 lines
306 B
Nix

{ self, ... }:
{
flake.nixosModules.fediversity = import ./fediversity;
perSystem =
{ pkgs, ... }:
{
checks = {
mastodon = import ./tests/mastodon.nix { inherit self pkgs; };
pixelfed-garage = import ./tests/pixelfed-garage.nix { inherit self pkgs; };
};
};
}