From fcea2bbe4e1003afb315d55587dda1b6e6b7f2a1 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Wed, 16 Jul 2025 20:27:03 +0200 Subject: [PATCH] feat: more signal conf --- hosts/hitsugibune/matrix.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/hosts/hitsugibune/matrix.nix b/hosts/hitsugibune/matrix.nix index a1b6c4a..982dfc3 100644 --- a/hosts/hitsugibune/matrix.nix +++ b/hosts/hitsugibune/matrix.nix @@ -190,6 +190,28 @@ in { address = "http://localhost:8008"; name = config.networking.domain; }; + + bridge = { + permissions = { + "*" = "relay"; + "sprechtl.me" = "user"; + "@spr3ez:sprechtl.me" = "admin"; + }; + }; + + backfill = { + enabled = true; + }; + + matrix = { + message_status_events = true; + }; + + encryption = { + allow = true; + default = true; + pickle_key = "$ENCRYPTION_PICKLE_KEY"; + }; }; }; }