mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
14 lines
396 B
Nix
14 lines
396 B
Nix
{ 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;
|
|
};
|
|
}
|