tweak: disable mastodon module

This commit is contained in:
Kiana Sheibani 2025-10-08 23:08:45 -04:00
parent 59a300c376
commit 3990a012ae
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -23,13 +23,19 @@
# Aether modules # Aether modules
imports = [ imports = [
aether.all
aether.deploy-rpi5 aether.deploy-rpi5
aether.basic
aether.fail2ban
aether.forgejo
aether.ssh
]; ];
aether.domain = "tokinanpa.dev"; aether.domain = "tokinanpa.dev";
aether.acmeEmail = "kiana.a.sheibani@gmail.com"; aether.acmeEmail = "kiana.a.sheibani@gmail.com";
# Forgejo
aether.forgejo.theme = "${forgejo-tokyo-night}/public/assets"; aether.forgejo.theme = "${forgejo-tokyo-night}/public/assets";
aether.forgejo.templates = ./forgejo-templates; aether.forgejo.templates = ./forgejo-templates;
services.forgejo.settings = { services.forgejo.settings = {
@ -65,14 +71,16 @@
federation.ENABLED = true; federation.ENABLED = true;
}; };
aether.mastodon.subdomain = "social"; # Mastodon
services.mastodon = {
package = pkgs.mastodon.override { # aether.mastodon.subdomain = "social";
patches = [ ./mastodon/increase_limits.patch ]; # services.mastodon = {
}; # package = pkgs.mastodon.override {
extraConfig.SINGLE_USER_MODE = "true"; # patches = [ ./mastodon/increase_limits.patch ];
streamingProcesses = 3; # };
}; # extraConfig.SINGLE_USER_MODE = "true";
# streamingProcesses = 3;
# };
system.stateVersion = "24.05"; system.stateVersion = "24.05";
} }