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.
This commit is contained in:
Erin of Yukis 2025-08-29 08:56:37 +00:00 committed by GitHub
commit 1ec5da1a27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -528,7 +528,7 @@ in
ProtectSystem = "strict";
ProtectClock = true;
ProtectHome = true;
ProtectProc = true;
ProtectProc = "noaccess";
ProtectKernelLogs = true;
PrivateTmp = true;
PrivateDevices = true;