1 files changed, 6 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 22dca66..b70d0b2 100644
--- a/flake.nix
+++ b/flake.nix
@@ -113,10 +113,14 @@
};
jwtSecretPath = lib.mkOption {
type = lib.types.path;
- description = "Path to the JWT secret directory.";
default = "/var/lib/SafeNSound";
+ description = "Path to the JWT secret directory.";
+ };
+ logRequests = lib.mkOption {
+ type = lib.types.string;
+ description = "Which requests to log.";
+ default = "-";
};
- logRequests = lib.mkEnableOption "Log requests";
logQueries = lib.mkEnableOption "Log queries";
logAuth = lib.mkEnableOption "Log authentication";
};
|