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"; }; } -