From a77a52a3bf107b6f6f28ec414919444c09f74d4b Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Wed, 16 Jul 2025 20:30:43 +0200 Subject: [PATCH] feat: change db type to fix warn and remove encr for now --- hosts/hitsugibune/matrix.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/hosts/hitsugibune/matrix.nix b/hosts/hitsugibune/matrix.nix index 982dfc3..982bc8b 100644 --- a/hosts/hitsugibune/matrix.nix +++ b/hosts/hitsugibune/matrix.nix @@ -207,11 +207,15 @@ in { message_status_events = true; }; - encryption = { - allow = true; - default = true; - pickle_key = "$ENCRYPTION_PICKLE_KEY"; + database = { + type = "sqlite3-fk-wal"; }; + + # encryption = { + # allow = true; + # default = true; + # pickle_key = "$ENCRYPTION_PICKLE_KEY"; + # }; }; }; }