nixos-config/hosts/phantom/mastodon.nix

12 lines
309 B
Nix
Raw Normal View History

2024-03-28 21:56:52 -03:00
{ 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";
2024-04-06 20:38:46 -03:00
mediaAutoRemove.olderThanDays = 10;
2024-03-28 21:56:52 -03:00
};
}