From 4853c8111d022b68fa38df034b6c9180f090cd59 Mon Sep 17 00:00:00 2001
From: Benedikt Peetz <benedikt.peetz@b-peetz.de>
Date: Fri, 6 Sep 2024 07:32:50 +0200
Subject: fix(services/matrix/mautrix-whatsapp): Disable to remove libolm

Libolm is marked as insecure and must thus be removed from the system
closure.
---
 system/services/matrix/default.nix | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'system/services')

diff --git a/system/services/matrix/default.nix b/system/services/matrix/default.nix
index 66474cc..8e9dd2a 100644
--- a/system/services/matrix/default.nix
+++ b/system/services/matrix/default.nix
@@ -62,7 +62,9 @@ in {
     };
 
     mautrix-whatsapp = {
-      enable = true;
+      # FIXME(@bpeetz): This was disabled because `mautrix-whatsapp` dependends on libolm.
+      # Re-enable it, when this has changed. <2024-09-06>
+      enable = false;
       settings = {
         appservice = {
           database = {
-- 
cgit 1.4.1