nix-community.nixvim/modules/doc.nix
2024-02-11 13:51:34 +01:00

7 lines
168 B
Nix

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