From 2063a8b903f053739bf4a1ba4356f3d94bab49b4 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 15 Dec 2025 10:23:35 +0000 Subject: [PATCH] nixos/rtorrent: add missing @chown in SystemCallFilter Fix #445186. --- nixos/modules/services/torrent/rtorrent.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/torrent/rtorrent.nix b/nixos/modules/services/torrent/rtorrent.nix index 822e1ab1c3c5..6b8a9d55d6e9 100644 --- a/nixos/modules/services/torrent/rtorrent.nix +++ b/nixos/modules/services/torrent/rtorrent.nix @@ -245,6 +245,7 @@ in RestrictSUIDSGID = true; SystemCallArchitectures = "native"; SystemCallFilter = [ + "@chown" "@system-service" "~@privileged" ];