From 300efce1810bc30dbb6798232ae54b1f979fad0e Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Fri, 21 Mar 2025 01:09:57 -0700 Subject: [PATCH] nixos/clatd: allow AF_UNIX communication This is needed since clatd will use networkctl to attempt to obtain the PLAT prefix, and networkctl uses UNIX domain sockets to communicate with the systemd-networkd daemon over DBus. --- nixos/modules/services/networking/clatd.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/clatd.nix b/nixos/modules/services/networking/clatd.nix index 8ddeb51479e4..573d77e71d71 100644 --- a/nixos/modules/services/networking/clatd.nix +++ b/nixos/modules/services/networking/clatd.nix @@ -75,6 +75,7 @@ in "AF_INET" "AF_INET6" "AF_NETLINK" + "AF_UNIX" ]; RestrictNamespaces = true; RestrictRealtime = true;