nix-community.nixvim/modules/warnings.nix
Alexander Nortung 6ad7575d6f Added assertions
2023-01-22 20:31:23 +01:00

17 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 = [];
};
};
}