nixos/miniflux: fix startup failure caused by improper SystemCallFilter

This commit is contained in:
MidAutumnMoon 2022-10-23 09:25:54 +08:00
parent 500dfd3948
commit 8b4b334a66
No known key found for this signature in database
GPG Key ID: 3B9D690FD7E4664A

View File

@ -116,7 +116,7 @@ in
RestrictRealtime = true;
RestrictSUIDSGID = true;
SystemCallArchitectures = "native";
SystemCallFilter = [ "@system-service" "~@privileged" "~@resources" ];
SystemCallFilter = [ "@system-service" "~@privileged" ];
UMask = "0077";
};