diff --git a/modules/desktop/apps/qbittorrent.nix b/modules/desktop/apps/qbittorrent.nix index e3b59f0..849b65e 100644 --- a/modules/desktop/apps/qbittorrent.nix +++ b/modules/desktop/apps/qbittorrent.nix @@ -10,6 +10,11 @@ in { }; config = lib.mkIf cfg.enable { + /* Potential Remote Code Execution https://www.openwall.com/lists/oss-security/2024/10/30/4 */ + nixpkgs.config.permittedInsecurePackages = [ + "qbittorrent-4.6.4" + ]; + user.packages = with pkgs; [ qbittorrent ];