summary refs log tree commit diff
path: root/nixos/modules/services/networking/ircd-hybrid
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-08-27 23:41:15 +0200
committeraszlig <aszlig@redmoonstudios.org>2014-08-27 23:41:15 +0200
commit8a56a55bb442cbf2e2126d40df55e67b9aea0361 (patch)
tree916948eff016c868746d3a31b9e6f6120d33e449 /nixos/modules/services/networking/ircd-hybrid
parent9667a4067c7e3f02a6a0fe8f1f3344c1cb1d7ef7 (diff)
downloadnixlib-8a56a55bb442cbf2e2126d40df55e67b9aea0361.tar
nixlib-8a56a55bb442cbf2e2126d40df55e67b9aea0361.tar.gz
nixlib-8a56a55bb442cbf2e2126d40df55e67b9aea0361.tar.bz2
nixlib-8a56a55bb442cbf2e2126d40df55e67b9aea0361.tar.lz
nixlib-8a56a55bb442cbf2e2126d40df55e67b9aea0361.tar.xz
nixlib-8a56a55bb442cbf2e2126d40df55e67b9aea0361.tar.zst
nixlib-8a56a55bb442cbf2e2126d40df55e67b9aea0361.zip
nixos/manual: Use literalExample when feasible.
Should bring most of the examples into a better consistency regarding
syntactic representation in the manual.

Thanks to @devhell for reporting.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'nixos/modules/services/networking/ircd-hybrid')
-rw-r--r--nixos/modules/services/networking/ircd-hybrid/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/ircd-hybrid/default.nix b/nixos/modules/services/networking/ircd-hybrid/default.nix
index a3d5b71740f6..2c397f94d230 100644
--- a/nixos/modules/services/networking/ircd-hybrid/default.nix
+++ b/nixos/modules/services/networking/ircd-hybrid/default.nix
@@ -66,7 +66,7 @@ in
 
       rsaKey = mkOption {
         default = null;
-        example = /root/certificates/irc.key;
+        example = literalExample "/root/certificates/irc.key";
         description = "
           IRCD server RSA key.
         ";
@@ -74,7 +74,7 @@ in
 
       certificate = mkOption {
         default = null;
-        example = /root/certificates/irc.pem;
+        example = literalExample "/root/certificates/irc.pem";
         description = "
           IRCD server SSL certificate. There are some limitations - read manual.
         ";