nix-community.nixvim/modules/doc.nix

8 lines
168 B
Nix
Raw Normal View History

{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.";
};
}