nix-community.nixvim/modules/doc.nix

9 lines
170 B
Nix
Raw Permalink Normal View History

2024-05-05 19:39:35 +02:00
{ lib, ... }:
{
options.enableMan = lib.mkOption {
type = lib.types.bool;
default = true;
2024-02-11 12:51:34 +00:00
description = "Install the man pages for NixVim options.";
};
}