added warnings module

This commit is contained in:
Alexander Nortung 2023-01-20 00:15:58 +01:00
parent e607ab67a5
commit 5a222885fc
5 changed files with 65 additions and 8 deletions

12
modules/warnings.nix Normal file
View file

@ -0,0 +1,12 @@
{ lib, ... }:
with lib;
{
options = {
warnings = mkOption {
type = types.listOf types.str;
visible = false;
default = [];
};
};
}