nixos-config/hosts/phantom/mastodon.nix
2024-04-06 20:38:46 -03:00

12 lines
309 B
Nix

{ config, pkgs, inputs, ... }: {
services.mastodon = {
enable = true;
configureNginx = true;
localDomain = "social.lelgenio.xyz";
smtp.fromAddress = "lelgenio@disroot.org";
streamingProcesses = 2;
extraConfig.SINGLE_USER_MODE = "true";
mediaAutoRemove.olderThanDays = 10;
};
}