diff options
author | Vika <vika@fireburn.ru> | 2025-01-04 16:30:07 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2025-01-04 16:30:07 +0300 |
commit | 52b9998588c55f579e816852a429de274a91be74 (patch) | |
tree | 151015ca5b694c4761cd2f415d5d8299d0a6a3d7 /configuration.nix | |
parent | e8aa12a52afa46dc9d0533b82c510f7178440ab3 (diff) | |
download | kittybox-52b9998588c55f579e816852a429de274a91be74.tar.zst |
Change-Id: I81fe5b0432b31061c15b298d353e64822dd8c0ac
Diffstat (limited to 'configuration.nix')
-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 |