mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
8 lines
226 B
Nix
8 lines
226 B
Nix
{ pkgs, lib, config, ... }: {
|
|
services.jitsi-meet = {
|
|
enable = true;
|
|
hostName = "jitsi.froidmont.org";
|
|
interfaceConfig = { RECENT_LIST_ENABLED = false; };
|
|
};
|
|
services.jitsi-videobridge.openFirewall = true;
|
|
}
|