self-hosting/modules/jitsi.nix

15 lines
396 B
Nix
Raw Normal View History

2024-03-26 23:37:53 +01:00
{ pkgs, config, lib, ... }:
let cfg = config.custom.services.jitsi;
in {
options.custom.services.jitsi = { enable = lib.mkEnableOption "jitsi"; };
config = lib.mkIf cfg.enable {
services.jitsi-meet = {
enable = true;
hostName = "jitsi.froidmont.org";
interfaceConfig = { RECENT_LIST_ENABLED = false; };
};
services.jitsi-videobridge.openFirewall = true;
2021-12-27 17:17:02 +01:00
};
}