Switch back to Matrix to hell with it all

This commit is contained in:
Bun 2025-03-17 03:55:42 -04:00
parent 5b14c780cd
commit a22358ca47
10 changed files with 160 additions and 37 deletions

View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
services.nginx.virtualHosts."chat.nixfox.ca" = lib.mkIf config.services.matrix-synapse.enable {
enableACME = true;
addSSL = true;
root = "${pkgs.element-web}";
};
}