nix-configs/dev/stoners-space.nix
Aaron Honeycutt 1c788b0cd4 Add new file
2023-03-13 13:23:33 +00: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" ];
};
}