about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2025-01-04 16:30:07 +0300
committerVika <vika@fireburn.ru>2025-01-04 16:30:07 +0300
commit52b9998588c55f579e816852a429de274a91be74 (patch)
tree151015ca5b694c4761cd2f415d5d8299d0a6a3d7
parente8aa12a52afa46dc9d0533b82c510f7178440ab3 (diff)
downloadkittybox-52b9998588c55f579e816852a429de274a91be74.tar.zst
Remove lib.mdDoc from configuration.nix HEAD main
Change-Id: I81fe5b0432b31061c15b298d353e64822dd8c0ac
-rw-r--r--configuration.nix8
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