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

View file

@ -4,7 +4,6 @@
forgejo.enable = true; forgejo.enable = true;
icecast.enable = true; icecast.enable = true;
jellyfin.enable = true; jellyfin.enable = true;
mastodon.enable = true;
matrix-synapse.enable = true; matrix-synapse.enable = true;
nextcloud.enable = true; nextcloud.enable = true;
nfs.server.enable = true; nfs.server.enable = true;

Binary file not shown.

View file

@ -6,7 +6,6 @@
./icecast ./icecast
./jellyfin ./jellyfin
./mailserver ./mailserver
./mastodon
./matrix ./matrix
./minecraft ./minecraft
./mysql ./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" ];
};
}