nix-configs/web/stoners-space.nix
Aaron Honeycutt de53a26819 format nix
2025-09-18 17:24:56 -06:00

17 lines
288 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"];
};
}