From 029438180432b340a7ba6bde44b58c973ad68203 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 9 Nov 2025 16:07:19 +0900 Subject: [PATCH] module.nix: explicitly disable `PrivateIPC` --- nix/module.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index 514753c..5147e58 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -113,6 +113,7 @@ in # Needed to communicate with MySQL. PrivateNetwork = false; + PrivateIPC = false; IPAddressDeny = lib.optionals (lib.elem cfg.settings.mysql.host [ null "localhost" "127.0.0.1" ]) [ "any" ]; @@ -165,4 +166,4 @@ in }; }; }; -} \ No newline at end of file +}