From a0531650c6725afb5986cc25d2ab253b8d67a5d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Fri, 23 Feb 2024 12:01:09 -0300 Subject: [PATCH] mastodon: remove unnecessary configurations --- hosts/ghost/mastodon.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/hosts/ghost/mastodon.nix b/hosts/ghost/mastodon.nix index a4262f0..3e629d7 100644 --- a/hosts/ghost/mastodon.nix +++ b/hosts/ghost/mastodon.nix @@ -1,16 +1,10 @@ { config, pkgs, inputs, ... }: { services.mastodon = { enable = true; - localDomain = "social.lelgenio.xyz"; configureNginx = true; + localDomain = "social.lelgenio.xyz"; smtp.fromAddress = "lelgenio@disroot.org"; - extraConfig.SINGLE_USER_MODE = "true"; streamingProcesses = 2; - }; - - services.nginx.virtualHosts.${config.services.nextcloud.hostName} = { - forceSSL = true; - enableACME = true; + extraConfig.SINGLE_USER_MODE = "true"; }; } -