mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
11 lines
187 B
Nix
11 lines
187 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
options.test = {
|
||
|
runNvim = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
description = "Whether to run `nvim` in the test.";
|
||
|
default = true;
|
||
|
};
|
||
|
};
|
||
|
}
|