From 75178fc68c23efa41c39dfe002b13ac89eb63027 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Fri, 28 Apr 2023 11:40:07 +0200 Subject: [PATCH] Remove yt-dlp patch :( --- modules/programs/default.nix | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/modules/programs/default.nix b/modules/programs/default.nix index c563615b..c6390f40 100644 --- a/modules/programs/default.nix +++ b/modules/programs/default.nix @@ -11,15 +11,6 @@ ]; home-manager.users.charlotte = { ... }: { - home.packages = with pkgs; [ - (yt-dlp.overrideAttrs (old: { - patches = (old.patches or [ ]) ++ [ - (fetchpatch { - url = https://github.com/yt-dlp/yt-dlp/pull/6654.patch; - hash = "sha256-r7pY7RzF1e2otQmyha6wX3Q9s7H8PllDj1WeriJ2cVs="; - }) - ]; - })) - ]; + home.packages = with pkgs; [ yt-dlp ]; }; }