nixos/wyoming-faster-whisper: remove ProcSubset protection

ProcSubset protection blocks faster-whisper from parsing /proc/cpuinfo
This results in a fallback to a suboptimal processing method, causing
processing times to be unnecessarily long
This commit is contained in:
Jana Steuernagel
2025-01-11 11:21:58 +01:00
parent ad2781b7a0
commit d9ff154b74
@@ -273,7 +273,8 @@ in
ProtectKernelTunables = true;
ProtectControlGroups = true;
ProtectProc = "invisible";
ProcSubset = "pid";
# "all" is required because faster-whisper accesses /proc/cpuinfo to determine cpu capabilities
ProcSubset = "all";
RestrictAddressFamilies = [
"AF_INET"
"AF_INET6"