From 3990a012ae1aaad765eda7122653c274cb18eb32 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 8 Oct 2025 23:08:45 -0400 Subject: [PATCH] tweak: disable mastodon module --- aether/config.nix | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/aether/config.nix b/aether/config.nix index df8203a..8db7488 100644 --- a/aether/config.nix +++ b/aether/config.nix @@ -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"; }