diff --git a/nixos/modules/services/security/warpgate.nix b/nixos/modules/services/security/warpgate.nix index a52d0eefcb42..7d6f2ca2596c 100644 --- a/nixos/modules/services/security/warpgate.nix +++ b/nixos/modules/services/security/warpgate.nix @@ -283,6 +283,14 @@ in }; }; log = { + format = mkOption { + description = "The format Warpgate emits logs in."; + default = "text"; + type = enum [ + "text" + "json" + ]; + }; retention = mkOption { description = "How long Warpgate keep its logs."; default = "7days";