Upload New File

This commit is contained in:
Aaron Honeycutt 2023-03-07 18:20:00 +00:00
parent bd92e9d8f6
commit e767ec4b55

View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
services.mastodon = {
enable = true;
localDomain = "mstdn.tildecafe.com"; # Replace with your own domain
configureNginx = true;
smtp.fromAddress = "aaronhoneycutt@proton.me"; # Email address used by Mastodon to send emails, replace with your own
extraConfig.SINGLE_USER_MODE = "true";
};
services.postgresqlBackup = {
enable = true;
databases = [ "mastodon" ];
};
}