self-hosting/modules/jitsi.nix

9 lines
226 B
Nix
Raw Normal View History

2023-07-19 18:41:20 +02:00
{ pkgs, lib, config, ... }: {
2021-12-27 17:17:02 +01:00
services.jitsi-meet = {
enable = true;
hostName = "jitsi.froidmont.org";
2023-07-19 18:41:20 +02:00
interfaceConfig = { RECENT_LIST_ENABLED = false; };
2021-12-27 17:17:02 +01:00
};
services.jitsi-videobridge.openFirewall = true;
}