mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
15 lines
271 B
Nix
15 lines
271 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
options = {
|
||
|
isDocs = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
description = ''
|
||
|
Whether modules are being evaluated to build documentation.
|
||
|
'';
|
||
|
internal = true;
|
||
|
visible = false;
|
||
|
};
|
||
|
};
|
||
|
}
|