From 1ec5da1a27c5ec9e005183ed0b8e9a1f1660c904 Mon Sep 17 00:00:00 2001 From: Erin of Yukis Date: Fri, 29 Aug 2025 08:56:37 +0000 Subject: [PATCH] nixos/jitsi-meet: fix systemd protection flag warning Fixes systemd warning: > /etc/systemd/system/jitsi-excalidraw.service:26: Failed to parse ProtectProc=true, ignoring: Invalid argument when Jitsi-Meet Excalidraw Backend is enabled. `ProtectProc=true` is not a thing according to man pages, `ProtectProc=noaccess` is the most restrictive setting and likely what was originally intentioned. --- nixos/modules/services/web-apps/jitsi-meet.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/jitsi-meet.nix b/nixos/modules/services/web-apps/jitsi-meet.nix index 219fab93e642..cc6e6af64051 100644 --- a/nixos/modules/services/web-apps/jitsi-meet.nix +++ b/nixos/modules/services/web-apps/jitsi-meet.nix @@ -528,7 +528,7 @@ in ProtectSystem = "strict"; ProtectClock = true; ProtectHome = true; - ProtectProc = true; + ProtectProc = "noaccess"; ProtectKernelLogs = true; PrivateTmp = true; PrivateDevices = true;