2024-05-05 19:39:35 +02:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
2023-11-06 16:26:23 +01:00
|
|
|
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.";
|
2023-11-06 16:26:23 +01:00
|
|
|
};
|
|
|
|
}
|