{ pkgs, config, ... }:
{
  services.nginx.virtualHosts."chat.${config.domains.jim1}" = {
    enableACME = true;
    addSSL = true;
    root = "${pkgs.element-web}";
  };
}