18 lines
511 B
Nix
18 lines
511 B
Nix
{ config, pkgs, inputs, ... }: {
|
|
services.mastodon = {
|
|
enable = true;
|
|
configureNginx = true;
|
|
localDomain = "social.lelgenio.com";
|
|
smtp = {
|
|
authenticate = true;
|
|
host = "lelgenio.com";
|
|
fromAddress = "noreply@social.lelgenio.com";
|
|
user = "noreply@social.lelgenio.com";
|
|
passwordFile = config.age.secrets.phantom-forgejo-mailer-password.path;
|
|
};
|
|
streamingProcesses = 2;
|
|
extraConfig.SINGLE_USER_MODE = "true";
|
|
mediaAutoRemove.olderThanDays = 10;
|
|
};
|
|
}
|