From 2a7d47f814593861630dbb17ed3e155499a37fd5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 29 Dec 2024 19:17:48 +0100 Subject: [PATCH] nixos/matter-server: allow AF_UNIX sockets for dbus connections This is necessary for establishing bluetooth connections over dbus and bluez. --- nixos/modules/services/home-automation/matter-server.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/home-automation/matter-server.nix b/nixos/modules/services/home-automation/matter-server.nix index b05991148c4e..d01b70e89c14 100644 --- a/nixos/modules/services/home-automation/matter-server.nix +++ b/nixos/modules/services/home-automation/matter-server.nix @@ -109,6 +109,7 @@ in "AF_INET" "AF_INET6" "AF_NETLINK" + "AF_UNIX" ]; RestrictNamespaces = true; RestrictRealtime = true;