Remove Mastodon because I have no use for it
This commit is contained in:
parent
44ab3f90a5
commit
c1df84d907
4 changed files with 0 additions and 22 deletions
|
@ -4,7 +4,6 @@
|
|||
forgejo.enable = true;
|
||||
icecast.enable = true;
|
||||
jellyfin.enable = true;
|
||||
mastodon.enable = true;
|
||||
matrix-synapse.enable = true;
|
||||
nextcloud.enable = true;
|
||||
nfs.server.enable = true;
|
||||
|
|
Binary file not shown.
|
@ -6,7 +6,6 @@
|
|||
./icecast
|
||||
./jellyfin
|
||||
./mailserver
|
||||
./mastodon
|
||||
./matrix
|
||||
./minecraft
|
||||
./mysql
|
||||
|
|
|
@ -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" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue