nix-config/hosts/nixedo/services/mastodon.nix

18 lines
280 B
Nix
Raw Normal View History

{
services.mastodon = {
enable = true;
configureNginx = true;
localDomain = "social.oliverdavies.uk";
streamingProcesses = 3;
extraConfig = {
SINGLE_USER_MODE = "true";
};
smtp = {
fromAddress = "social@oliverdavies.uk";
};
};
}