jitsi-meet: make excalidraw and secureDomain usable independently of each other (#464111)
This commit is contained in:
@@ -651,19 +651,17 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
services.jitsi-meet.config =
|
||||
recursiveUpdate
|
||||
(mkIf cfg.excalidraw.enable {
|
||||
whiteboard = {
|
||||
enabled = true;
|
||||
collabServerBaseUrl = "https://${cfg.hostName}";
|
||||
};
|
||||
})
|
||||
(
|
||||
mkIf cfg.secureDomain.enable {
|
||||
hosts.anonymousdomain = "guest.${cfg.hostName}";
|
||||
}
|
||||
);
|
||||
services.jitsi-meet.config = mkMerge [
|
||||
(mkIf cfg.excalidraw.enable {
|
||||
whiteboard = {
|
||||
enabled = true;
|
||||
collabServerBaseUrl = "https://${cfg.hostName}";
|
||||
};
|
||||
})
|
||||
(mkIf cfg.secureDomain.enable {
|
||||
hosts.anonymousdomain = "guest.${cfg.hostName}";
|
||||
})
|
||||
];
|
||||
|
||||
services.jitsi-videobridge = mkIf cfg.videobridge.enable {
|
||||
enable = true;
|
||||
|
||||
Reference in New Issue
Block a user