Remove Mastodon because I have no use for it

This commit is contained in:
Bun 2025-03-19 18:54:30 -04:00
parent 44ab3f90a5
commit c1df84d907
4 changed files with 0 additions and 22 deletions

Binary file not shown.

View file

@ -6,7 +6,6 @@
./icecast
./jellyfin
./mailserver
./mastodon
./matrix
./minecraft
./mysql

View file

@ -1,20 +0,0 @@
{ config, lib, pkgs, ... }:
{
config = lib.mkIf config.services.mastodon.enable {
services.mastodon = {
localDomain = "social.nixfox.ca";
streamingProcesses = 4;
configureNginx = true;
smtp = {
createLocally = false;
host = "mx.nixfox.ca";
port = 587;
authenticate = true;
fromAddress = "NixFox Mastodon <noreply@nixfox.ca>";
user = "noreply@nixfox.ca";
passwordFile = pkgs.writeText "smtp_pass.txt" config.secrets.mailPass.nixfoxNoReply;
};
};
environment.persistence."/persist".directories = [ "/var/lib/mastodon" ];
};
}