nixos-config/hosts/phantom/mastodon.nix
2024-03-28 23:02:31 -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";
};
}