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