nix-community.nixvim/modules/warnings.nix

17 lines
320 B
Nix
Raw Permalink Normal View History

2024-05-05 19:39:35 +02:00
{ lib, ... }:
with lib;
{
options = {
warnings = mkOption {
type = types.listOf types.str;
visible = false;
2024-05-05 19:39:35 +02:00
default = [ ];
};
assertions = mkOption {
type = types.listOf types.attrs; # Not sure what the correct type is here
visible = false;
2024-05-05 19:39:35 +02:00
default = [ ];
};
};
}