9 lines
211 B
Nix
9 lines
211 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
services.nginx.virtualHosts."chat.nixfox.ca" = lib.mkIf config.services.matrix-synapse.enable {
|
||
|
enableACME = true;
|
||
|
addSSL = true;
|
||
|
root = "${pkgs.element-web}";
|
||
|
};
|
||
|
}
|