nix-configs/web/stoners-space.nix
2023-03-30 07:45:44 -06:00

16 lines
286 B
Nix

{ config, pkgs, ... }:
{
services.mastodon = {
enable = true;
localDomain = "stoners.space"; # Replace with your own domain
configureNginx = true;
smtp.fromAddress = "";
};
services.postgresqlBackup = {
enable = true;
databases = [ "mastodon" ];
};
}