diff --git a/dev/stoners-space.nix b/dev/stoners-space.nix new file mode 100644 index 0000000..dc5cf68 --- /dev/null +++ b/dev/stoners-space.nix @@ -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" ]; + }; + +}