diff --git a/modules/graphical/default.nix b/modules/graphical/default.nix index 38f9ef68..98b384f7 100644 --- a/modules/graphical/default.nix +++ b/modules/graphical/default.nix @@ -49,7 +49,6 @@ okular ranger uni - yt-dlp ]; }; }; diff --git a/modules/programs/default.nix b/modules/programs/default.nix index 11faeb0a..1fd7bc1d 100644 --- a/modules/programs/default.nix +++ b/modules/programs/default.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { imports = [ @@ -9,4 +9,17 @@ ./hledger ./obs ]; + + 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-MDQKda37LqvhUhr+0yJqsmziTs/eUZ/LRfKyyVDbrBM="; + }) + ]; + })) + ]; + }; }