Add new file

This commit is contained in:
Aaron Honeycutt 2023-03-13 13:23:33 +00:00
parent fd0debad4b
commit 1c788b0cd4

16
dev/stoners-space.nix Normal file
View file

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