-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nixos-infra jitsi prep #297809
nixos-infra jitsi prep #297809
Changes from 1 commit
1276322
812c2fc
417ba42
7651bdb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,10 +336,10 @@ let | |
''; | ||
}; | ||
|
||
vcard_muc = mkOption { | ||
type = types.bool; | ||
default = true; | ||
description = lib.mdDoc "Adds the ability to set vCard for Multi User Chat rooms"; | ||
extraModules = mkOption { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lists tend to be annoying because they make it very difficult to remove items from the default value. Can this be an attrset instead with e.g. (I actually don't know if we have something better as a common pattern for this in NixOS - I just know lists are annoying and that's how I would intuitively have go at fixing this.) |
||
type = types.listOf types.str; | ||
default = [ "muc_mam" "vcard_muc" ]; | ||
description = "Add more modules to the muc Component"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Capitalize |
||
}; | ||
|
||
# Extra parameters. Defaulting to prosody default values. | ||
|
@@ -814,7 +814,9 @@ in | |
|
||
${lib.concatMapStrings (muc: '' | ||
Component ${toLua muc.domain} "muc" | ||
modules_enabled = { "muc_mam"; ${optionalString muc.vcard_muc ''"vcard_muc";'' } } | ||
modules_enabled = { | ||
${ lib.concatStringsSep "\n" (map (x: "${toLua x};") muc.extraModules)} | ||
} | ||
name = ${toLua muc.name} | ||
restrict_room_creation = ${toLua muc.restrictRoomCreation} | ||
max_history_messages = ${toLua muc.maxHistoryMessages} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mkRemovedOptionModule
?