summary refs log tree commit diff
path: root/nixos/modules/services/misc/weechat.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/misc/weechat.nix')
-rw-r--r--nixos/modules/services/misc/weechat.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/misc/weechat.nix b/nixos/modules/services/misc/weechat.nix
index 7a4c4dca2ac..b1de30ae2b8 100644
--- a/nixos/modules/services/misc/weechat.nix
+++ b/nixos/modules/services/misc/weechat.nix
@@ -10,18 +10,18 @@ in
   options.services.weechat = {
     enable = mkEnableOption "weechat";
     root = mkOption {
-      description = "Weechat state directory.";
+      description = lib.mdDoc "Weechat state directory.";
       type = types.str;
       default = "/var/lib/weechat";
     };
     sessionName = mkOption {
-      description = "Name of the `screen' session for weechat.";
+      description = lib.mdDoc "Name of the `screen' session for weechat.";
       default = "weechat-screen";
       type = types.str;
     };
     binary = mkOption {
       type = types.path;
-      description = "Binary to execute.";
+      description = lib.mdDoc "Binary to execute.";
       default = "${pkgs.weechat}/bin/weechat";
       defaultText = literalExpression ''"''${pkgs.weechat}/bin/weechat"'';
       example = literalExpression ''"''${pkgs.weechat}/bin/weechat-headless"'';