mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
18 lines
319 B
Nix
18 lines
319 B
Nix
|
{ lib, ... }:
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
warnings = mkOption {
|
||
|
type = types.listOf types.str;
|
||
|
visible = false;
|
||
|
default = [];
|
||
|
};
|
||
|
assertions = mkOption {
|
||
|
type = types.listOf types.attrs; # Not sure what the correct type is here
|
||
|
visible = false;
|
||
|
default = [];
|
||
|
};
|
||
|
};
|
||
|
}
|