diff --git a/dev/mstdn-tildecafe-com.nix b/dev/mstdn-tildecafe-com.nix deleted file mode 100644 index 91de8a7..0000000 --- a/dev/mstdn-tildecafe-com.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ config, pkgs, ... }: - -{ - services.mastodon = { - enable = true; - localDomain = "mstdn.tildecafe.com"; # Replace with your own domain - configureNginx = true; - smtp.fromAddress = "aaronhoneycutt@proton.me"; # Email address used by Mastodon to send emails, replace with your own - extraConfig.SINGLE_USER_MODE = "true"; - }; - - services.postgresqlBackup = { - enable = true; - databases = [ "mastodon" ]; - }; - -}