nixos/jigasi: update to use literalExpression
I saw this trace when building my system configuration this morning: ``` lazy-options.json> trace: warning: literalExample is deprecated, use literalExpression instead, or use literalMD for a non-Nix description. ``` This warning was introduced in https://github.com/NixOS/nixpkgs/pull/237557. The option this commit changes was introduced in https://github.com/NixOS/nixpkgs/pull/137003.
This commit is contained in:
@@ -96,7 +96,7 @@ in
|
|||||||
config = mkOption {
|
config = mkOption {
|
||||||
type = attrsOf str;
|
type = attrsOf str;
|
||||||
default = { };
|
default = { };
|
||||||
example = literalExample ''
|
example = literalExpression ''
|
||||||
{
|
{
|
||||||
"org.jitsi.jigasi.auth.URL" = "XMPP:jitsi-meet.example.com";
|
"org.jitsi.jigasi.auth.URL" = "XMPP:jitsi-meet.example.com";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user