mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 03:04:03 -06:00
16 lines
286 B
Nix
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" ];
|
|
};
|
|
|
|
}
|