nix-community.nixvim/modules/doc.nix
2023-11-06 16:26:23 +01:00

7 lines
167 B
Nix

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