nixos/authelia: complete level enum

This commit is contained in:
hatch01
2024-09-18 23:34:21 +02:00
committed by eymeric
parent e0474b3194
commit abc51d1654
+2 -2
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 {