mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
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:
parent
224b3a5ad9
commit
36ac922271
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue