summaryrefslogtreecommitdiff
path: root/modules/programs/nix-index
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-14 23:02:32 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-19 04:05:50 +0200
commitdef1e23be848848400d1d097d4f044e3c401f9dd (patch)
tree7a69686dea36e304c788531fda90bc3edeee86fd /modules/programs/nix-index
parent99b3f9a1f5d2604d542f367d38001dfa40eea7b9 (diff)
treewide: remove lib.mdDoc
Diffstat (limited to 'modules/programs/nix-index')
-rw-r--r--modules/programs/nix-index/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/programs/nix-index/default.nix b/modules/programs/nix-index/default.nix
index 0685346..b6f86f5 100644
--- a/modules/programs/nix-index/default.nix
+++ b/modules/programs/nix-index/default.nix
@@ -11,14 +11,14 @@ in
programs.nix-index.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to enable nix-index and its command-not-found helper.";
+ description = "Whether to enable nix-index and its command-not-found helper.";
};
programs.nix-index.package = mkOption {
type = types.package;
default = pkgs.nix-index;
defaultText = "pkgs.nix-index";
- description = lib.mdDoc "This option specifies the nix-index package to use.";
+ description = "This option specifies the nix-index package to use.";
};
};