services: initial jitsi

This commit is contained in:
Kabbone 2022-12-11 18:35:58 +01:00
parent e17934aaea
commit 2528ee597c
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY

View File

@ -0,0 +1,21 @@
{ pkgs, ... }:
{
services.jitsi-meet = {
enable = true;
hostName = "jitsi.kabtop.de";
config = {
enableWelcomePage = false;
prejoinPageEnabled = true;
defaultLang = "en";
};
interfaceConfig = {
SHOW_JITSI_WATERMARK = false;
SHOW_WATERMARK_FOR_GUESTS = false;
};
};
services.jitsi-videobridge.openFirewall = true;
security.acme.email = "webmaster@kabtop.de";
security.acme.acceptTerms = true;
}