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