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