nixos/authelia: complete level enum

This commit is contained in:
hatch01 2024-09-17 21:26:20 +02:00 committed by eymeric
parent e0474b3194
commit abc51d1654
No known key found for this signature in database

View File

@ -165,10 +165,10 @@ let
log = {
level = mkOption {
type = types.enum [ "info" "debug" "trace" ];
type = types.enum [ "trace" "debug" "info" "warn" "error" ];
default = "debug";
example = "info";
description = "Level of verbosity for logs: info, debug, trace.";
description = "Level of verbosity for logs.";
};
format = mkOption {