nixos-config/hosts/ghost/mastodon.nix

11 lines
269 B
Nix
Raw Normal View History

2023-10-26 11:27:09 -03:00
{ config, pkgs, inputs, ... }: {
services.mastodon = {
enable = true;
configureNginx = true;
localDomain = "social.lelgenio.xyz";
2023-10-26 11:27:09 -03:00
smtp.fromAddress = "lelgenio@disroot.org";
2023-11-29 01:33:28 -03:00
streamingProcesses = 2;
extraConfig.SINGLE_USER_MODE = "true";
2023-10-26 11:27:09 -03:00
};
}