{ fqdn }: { config, lib, pkgs, inputs, ... }: let port = 2024; in { # Nginx configuration services.nginx = { enable = true; recommendedProxySettings = true; recommendedTlsSettings = true; }; services.movim = { enable = true; domain = "${fqdn}"; port = 2024; # WebSocket port podConfig = { timezone = "UTC"; description = "OverBurnSocial"; xmppdomain = fqdn; }; nginx = { forceSSL = true; useACMEHost = "crashoverburn.com"; }; }; }