From 21d81266c2f792308e64d60aae48ccb66aeae496 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sat, 4 Oct 2025 11:44:05 +0200 Subject: [PATCH] nixos/murmur: Enable PrivateMounts hardening in service config Signed-off-by: Felix Singer --- nixos/modules/services/networking/murmur.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/murmur.nix b/nixos/modules/services/networking/murmur.nix index 692868c8a790..c192a8f35231 100644 --- a/nixos/modules/services/networking/murmur.nix +++ b/nixos/modules/services/networking/murmur.nix @@ -347,6 +347,7 @@ in MemoryDenyWriteExecute = true; NoNewPrivileges = true; PrivateDevices = true; + PrivateMounts = true; PrivateTmp = true; ProtectClock = true; ProtectControlGroups = true;