diff options
-rw-r--r-- | configuration.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configuration.nix b/configuration.nix index be24ec0..81247f5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -42,7 +42,7 @@ in { type = types.str; default = "file:///var/lib/kittybox/data"; example = "redis://192.168.1.200:6379"; - description = lib.mdDoc '' + description = '' Set the backend used for storing data. Available backends are: - `postgres://` - PostgreSQL backend (recommended) - `file://` - static folder backend @@ -60,7 +60,7 @@ in { blobstoreUri = mkOption { type = types.nullOr types.str; default = "file:///var/lib/kittybox/media"; - description = lib.mdDoc '' + description = '' Set the backend used for the media endpoint storage. Available options are: - `file://` - content-addressed storage using flat files (recommended) @@ -70,7 +70,7 @@ in { authstoreUri = mkOption { type = types.nullOr types.str; default = "file:///var/lib/kittybox/auth"; - description = lib.mdDoc '' + description = '' Set the backend used for persisting authentication data. Available options are: - `file://` - flat files. Codes are stored globally, tokens and credentials are stored per-site. @@ -79,7 +79,7 @@ in { jobQueueUri = mkOption { type = types.nullOr types.str; default = "postgres://localhost/kittybox?host=/run/postgresql"; - description = lib.mdDoc '' + description = '' Set the job queue backend. Available options are: - `postgres://` - PostgreSQL based job queue. It shares the schema with the Kittybox PostgreSQL backend, so Kittybox can reuse the |