upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/nix/module.nix
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2026-02-25 15:07:40 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2026-02-25 15:07:40 +0000
commit5ad9d9093fcbe7037e5474a9d8fa20a0b64fb79a (patch)
tree3c22fb4b42a62badedc29963d1ce39a2fbc83bb1 /nix/module.nix
parent4fc3b279d3eb86993f7748959a3986be5a6c49a7 (diff)
drop nostr-db backend support, keep only lmdb and memory
Diffstat (limited to 'nix/module.nix')
-rw-r--r--nix/module.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nix/module.nix b/nix/module.nix
index 89d58de..7354ab6 100644
--- a/nix/module.nix
+++ b/nix/module.nix
@@ -97,12 +97,11 @@ let
97 }; 97 };
98 98
99 databaseBackend = mkOption { 99 databaseBackend = mkOption {
100 type = types.enum [ "lmdb" "nostr-db" "memory" ]; 100 type = types.enum [ "lmdb" "memory" ];
101 default = "lmdb"; 101 default = "lmdb";
102 description = '' 102 description = ''
103 Database backend type: 103 Database backend type:
104 - lmdb: LMDB backend (persistent, general purpose) 104 - lmdb: LMDB backend (persistent, general purpose)
105 - nostr-db: NostrDB backend (persistent, optimized for Nostr)
106 - memory: In-memory database (fastest, no persistence) 105 - memory: In-memory database (fastest, no persistence)
107 ''; 106 '';
108 }; 107 };