summary refs log tree commit diff
path: root/nixos/modules/services/misc/radarr.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/misc/radarr.nix')
-rw-r--r--nixos/modules/services/misc/radarr.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/services/misc/radarr.nix b/nixos/modules/services/misc/radarr.nix
index 826d59da0af..a2d7b734f70 100644
--- a/nixos/modules/services/misc/radarr.nix
+++ b/nixos/modules/services/misc/radarr.nix
@@ -12,7 +12,7 @@ in
       enable = mkEnableOption "Radarr";
 
       package = mkOption {
-        description = "Radarr package to use";
+        description = lib.mdDoc "Radarr package to use";
         default = pkgs.radarr;
         defaultText = literalExpression "pkgs.radarr";
         example = literalExpression "pkgs.radarr";
@@ -22,25 +22,25 @@ in
       dataDir = mkOption {
         type = types.str;
         default = "/var/lib/radarr/.config/Radarr";
-        description = "The directory where Radarr stores its data files.";
+        description = lib.mdDoc "The directory where Radarr stores its data files.";
       };
 
       openFirewall = mkOption {
         type = types.bool;
         default = false;
-        description = "Open ports in the firewall for the Radarr web interface.";
+        description = lib.mdDoc "Open ports in the firewall for the Radarr web interface.";
       };
 
       user = mkOption {
         type = types.str;
         default = "radarr";
-        description = "User account under which Radarr runs.";
+        description = lib.mdDoc "User account under which Radarr runs.";
       };
 
       group = mkOption {
         type = types.str;
         default = "radarr";
-        description = "Group under which Radarr runs.";
+        description = lib.mdDoc "Group under which Radarr runs.";
       };
     };
   };