nix-community.nixvim/modules/doc.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
170 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.";
};
}