about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorPhilip Taron <philip.taron@gmail.com>2023-12-13 08:20:59 -0800
committerPhilip Taron <philip.taron@gmail.com>2023-12-13 08:20:59 -0800
commit36ac9222715cea3c0e657b620dad9f21fda1ad43 (patch)
tree0e8c09d8861635451320429f3a134b87a476b247 /nixos/modules
parent224b3a5ad9a960e4a6e3cd59233c1616164c5ef5 (diff)
downloadnixlib-36ac9222715cea3c0e657b620dad9f21fda1ad43.tar
nixlib-36ac9222715cea3c0e657b620dad9f21fda1ad43.tar.gz
nixlib-36ac9222715cea3c0e657b620dad9f21fda1ad43.tar.bz2
nixlib-36ac9222715cea3c0e657b620dad9f21fda1ad43.tar.lz
nixlib-36ac9222715cea3c0e657b620dad9f21fda1ad43.tar.xz
nixlib-36ac9222715cea3c0e657b620dad9f21fda1ad43.tar.zst
nixlib-36ac9222715cea3c0e657b620dad9f21fda1ad43.zip
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.
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/jigasi.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/jigasi.nix b/nixos/modules/services/networking/jigasi.nix
index 8d2d25c6edfc..e701689031b1 100644
--- a/nixos/modules/services/networking/jigasi.nix
+++ b/nixos/modules/services/networking/jigasi.nix
@@ -96,7 +96,7 @@ in
     config = mkOption {
       type = attrsOf str;
       default = { };
-      example = literalExample ''
+      example = literalExpression ''
         {
           "org.jitsi.jigasi.auth.URL" = "XMPP:jitsi-meet.example.com";
         }