nixos-config/hosts/ghost/mastodon.nix
2024-02-23 12:01:09 -03:00

11 lines
269 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";
};
}