nix-community.nixvim/modules/doc.nix

8 lines
167 B
Nix
Raw Normal View History

{lib, ...}: {
options.enableMan = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Install the man pages for nixvim options";
};
}