nix-community.nixvim/modules/warnings.nix
2023-01-20 00:15:58 +01:00

12 lines
161 B
Nix

{ lib, ... }:
with lib;
{
options = {
warnings = mkOption {
type = types.listOf types.str;
visible = false;
default = [];
};
};
}