summary refs log tree commit diff
path: root/nixos/modules/services/security/tor.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/security/tor.nix')
-rw-r--r--nixos/modules/services/security/tor.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/services/security/tor.nix b/nixos/modules/services/security/tor.nix
index de82e32f496..730802d92cf 100644
--- a/nixos/modules/services/security/tor.nix
+++ b/nixos/modules/services/security/tor.nix
@@ -288,17 +288,17 @@ in
       };
 
       relay = {
-        enable = mkEnableOption "tor relaying" // {
-          description = ''
+        enable = mkEnableOption (lib.mdDoc "tor relaying") // {
+          description = lib.mdDoc ''
             Whether to enable relaying of Tor traffic for others.
 
-            See <link xlink:href="https://www.torproject.org/docs/tor-doc-relay"/>
+            See <https://www.torproject.org/docs/tor-doc-relay>
             for details.
 
             Setting this to true requires setting
-            <option>services.tor.relay.role</option>
+            {option}`services.tor.relay.role`
             and
-            <option>services.tor.settings.ORPort</option>
+            {option}`services.tor.settings.ORPort`
             options.
           '';
         };