minifedi/config.nix

29 lines
518 B
Nix
Raw Normal View History

2023-07-14 04:21:21 +00:00
{ types }:
{
instances = [
{
name = "mastodon";
type = types.mastodon;
version = ./versions/mastodon/mastodon-4.1.4;
}
{
name = "glitch";
type = types.mastodon;
version = ./versions/mastodon/glitch-a004718;
}
{
name = "akkoma";
type = types.akkoma;
}
{
name = "gotosocial";
type = types.gotosocial;
}
];
2023-07-30 20:02:53 +00:00
# Enable logging of all requests between instances. Requires ports 8080 and
# 8081 open.
mitmproxy = false;
2023-07-14 04:21:21 +00:00
}