From 629107649484b2327cdbcf86083f47818befc6f6 Mon Sep 17 00:00:00 2001 From: OlivierChiasson Date: Wed, 15 Jul 2026 10:38:08 -0300 Subject: [PATCH] chore(14900k): disable handbrake due to ffmpeg-full incompatibility Comment out handbrake installation because the current ffmpeg-full-8.1.2 version in nixpkgs contains a broken A01-mov-read patch that prevents successful builds. This is a temporary measure until nixpkgs is updated or the system is switched to a stable channel. --- modules/hosts/14900k/configuration.nix | 4 +++- modules/hosts/t2mbp/home.nix | 4 ---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/modules/hosts/14900k/configuration.nix b/modules/hosts/14900k/configuration.nix index 5d7631c..d8999cb 100644 --- a/modules/hosts/14900k/configuration.nix +++ b/modules/hosts/14900k/configuration.nix @@ -100,7 +100,9 @@ yt-dlp # Native install (avoid flatpak sandbox issues for QSV/VAAPI). - handbrake + # handbrake # TEMP removed 2026-07-13 — depends on broken ffmpeg-full-8.1.2 + # # (A01-mov-read patch fails against 8.1.2 source). Re-enable + # # when nixpkgs regenerates the patch or when switching to stable. qbittorrent diff --git a/modules/hosts/t2mbp/home.nix b/modules/hosts/t2mbp/home.nix index b23dc24..de6c6e1 100644 --- a/modules/hosts/t2mbp/home.nix +++ b/modules/hosts/t2mbp/home.nix @@ -20,9 +20,5 @@ } ]; - programs.npm = { - enable = true; - globalPackages = ["freebuff"]; - }; }; }