nix-community.nixvim/modules/doc.nix
2024-05-05 22:00:40 +02:00

8 lines
170 B
Nix

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