katzen-cafe/modules/jitsi.nix

21 lines
463 B
Nix
Raw Normal View History

2023-04-25 15:57:59 +02:00
{ pkgs, ... }:
{
2023-07-30 18:19:44 +02:00
# Jitsi for some reason needs 127.0.0.1:8080, and will fail if it can't get it
# what the fuck is this service...
2023-04-25 15:57:59 +02:00
services.jitsi-meet = {
enable = true;
hostName = "meet.katzen.cafe";
2023-05-05 06:49:09 +02:00
config = {
requireDisplayName = true;
prejoinConfig = {
enabled = true;
};
desktopSharingFrameRate = {
min = 5;
max = 30;
};
};
2023-04-25 15:57:59 +02:00
};
services.jitsi-videobridge.openFirewall = true;
}