2024-06-12 15:00:55 +02:00
|
|
|
{ config, pkgs, ... }: {
|
2024-04-16 22:17:16 +02:00
|
|
|
services.mastodon = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.nyastodon;
|
|
|
|
localDomain = config.networking.fqdn;
|
|
|
|
configureNginx = true;
|
|
|
|
smtp.fromAddress = "webmaster@girldick.gay";
|
|
|
|
streamingProcesses = 16;
|
|
|
|
};
|
|
|
|
}
|