From cff0005f849b0289b8cad3e30bc41d6489633bcc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= <dev@felschr.com>
Date: Sun, 19 Nov 2023 17:18:22 +0100
Subject: [PATCH] feat(matrix): do not require encryption for appservices

Encryption doesn't seem to work yet, so I'm disabling the enforcement of
it.
---
 services/matrix/appservices.nix | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/services/matrix/appservices.nix b/services/matrix/appservices.nix
index 8398b8a..e1fad9b 100644
--- a/services/matrix/appservices.nix
+++ b/services/matrix/appservices.nix
@@ -9,10 +9,9 @@ let
   bridge_encryption = {
     allow = true;
     default = true;
-    require = true;
+    # require = true; # TODO encryption doesn't work yet
     appservice = true;
     allow_key_sharing = true;
-    key_sharing.allow = true;
     delete_keys.delete_outdated_inbound = false;
   };
 in {