nix-community.nixvim/modules/warnings.nix

18 lines
319 B
Nix
Raw Normal View History

2023-01-20 00:15:58 +01:00
{ lib, ... }:
with lib;
{
options = {
warnings = mkOption {
type = types.listOf types.str;
visible = false;
default = [];
};
2023-01-22 20:31:23 +01:00
assertions = mkOption {
type = types.listOf types.attrs; # Not sure what the correct type is here
visible = false;
default = [];
};
2023-01-20 00:15:58 +01:00
};
}