summary refs log tree commit diff
path: root/nixos/modules/services/networking/routedns.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/routedns.nix')
-rw-r--r--nixos/modules/services/networking/routedns.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/services/networking/routedns.nix b/nixos/modules/services/networking/routedns.nix
index e0f5eedd2c8..6f3d769e864 100644
--- a/nixos/modules/services/networking/routedns.nix
+++ b/nixos/modules/services/networking/routedns.nix
@@ -38,8 +38,8 @@ in
           };
         }
       '';
-      description = ''
-        Configuration for RouteDNS, see <link xlink:href="https://github.com/folbricht/routedns/blob/master/doc/configuration.md"/>
+      description = lib.mdDoc ''
+        Configuration for RouteDNS, see <https://github.com/folbricht/routedns/blob/master/doc/configuration.md>
         for more information.
       '';
     };
@@ -49,14 +49,14 @@ in
       defaultText = "A RouteDNS configuration file automatically generated by values from services.routedns.*";
       type = types.path;
       example = literalExpression ''"''${pkgs.routedns}/cmd/routedns/example-config/use-case-1.toml"'';
-      description = "Path to RouteDNS TOML configuration file.";
+      description = lib.mdDoc "Path to RouteDNS TOML configuration file.";
     };
 
     package = mkOption {
       default = pkgs.routedns;
       defaultText = literalExpression "pkgs.routedns";
       type = types.package;
-      description = "RouteDNS package to use.";
+      description = lib.mdDoc "RouteDNS package to use.";
     };
   };