mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
24 lines
564 B
Nix
24 lines
564 B
Nix
{ lib, ... }:
|
|
{
|
|
options = {
|
|
isTopLevel = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether modules are being evaluated at the "top-level".
|
|
Should be false when evaluating nested submodules.
|
|
'';
|
|
internal = true;
|
|
visible = false;
|
|
};
|
|
isDocs = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether modules are being evaluated to build documentation.
|
|
'';
|
|
internal = true;
|
|
visible = false;
|
|
};
|
|
};
|
|
}
|