From 429aac2eb08ee158aaa1596cb29a638caefec477 Mon Sep 17 00:00:00 2001 From: coolneng Date: Mon, 14 Nov 2022 12:27:25 +0100 Subject: [PATCH] Enable voice messages for signal and facebook --- modules/communication.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/communication.nix b/modules/communication.nix index b7f4cd1..8184b05 100644 --- a/modules/communication.nix +++ b/modules/communication.nix @@ -109,7 +109,11 @@ in { systemd.services.matrix-as-signal = { requires = [ "signald.service" ]; after = [ "signald.service" ]; + unitConfig.JoinsNamespaceOf = "signald.service"; path = [ ffmpeg ]; }; + # Enable voice messages for facebook + systemd.services.matrix-as-facebook.path = [ ffmpeg ]; + }