1 files changed, 1 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index fa834f8..211b64b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -99,17 +99,15 @@
default = 3000;
description = "The port on which the SafeNSound service will listen.";
};
- logRequests = lib.mkEnableOption "Log requests";
dbCredentialsPath = lib.mkOption {
type = lib.types.path;
- default = "mongodb-pass";
description = "Path to the database credentials file.";
};
jwtSecretPath = lib.mkOption {
type = lib.types.path;
- default = ".";
description = "Path to the JWT secret directory.";
};
+ logRequests = lib.mkEnableOption "Log requests";
logQueries = lib.mkEnableOption "Log queries";
logAuth = lib.mkEnableOption "Log authentication";
};
|