forked from Fachschaft/nixConfig
17 lines
501 B
Nix
17 lines
501 B
Nix
flake-inputs:
|
|
{pkgs, config, lib, modulesPath, ...}: {
|
|
imports = [(modulesPath + "/services/web-apps/jitsi-meet.nix")];
|
|
|
|
services.jitsi-meet = {
|
|
enable = true;
|
|
hostName = "meet.mathebau.de";
|
|
config = {
|
|
defaultLang = "de";
|
|
|
|
};
|
|
};
|
|
services.nginx.virtualHosts."meet.mathebau.de".enableACME = false;
|
|
services.nginx.virtualHosts."meet.mathebau.de".forceSSL = false;
|
|
services.jitsi-videobridge.openFirewall = true;
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
}
|