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:
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 };