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