mirror of
https://github.com/nix-community/nixvim.git
synced 2026-09-02 10:17:27 -05:00
8 lines
168 B
Nix
8 lines
168 B
Nix
{lib, ...}: {
|
|
options.enableMan = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = "Install the man pages for NixVim options.";
|
|
};
|
|
}
|