Accept qBittorrent as insecure
All checks were successful
Check flake / build-amd64-linux (push) Successful in 2m50s

This commit is contained in:
Jordan Holt 2024-11-07 13:32:32 +00:00
parent e316405016
commit 8bb21d349b
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -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
];