mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
7 lines
168 B
Nix
7 lines
168 B
Nix
{lib, ...}: {
|
|
options.enableMan = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = "Install the man pages for NixVim options.";
|
|
};
|
|
}
|