From 0794bb4ce18778370adcedcc66861d5795a2a44f Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sun, 14 Jul 2024 15:09:03 +0000 Subject: [PATCH] fix: removed undesired beheaviour from lollypop lastfm and youtube, this changed was prompted by lollypop depending on youtube-dl which has been deprecated in favor of yt-dlp and to avoid the error message it generates, on top of the feature not being necessary --- modules/nix/overlays/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/nix/overlays/default.nix b/modules/nix/overlays/default.nix index 1c03b4e..00c2d82 100644 --- a/modules/nix/overlays/default.nix +++ b/modules/nix/overlays/default.nix @@ -11,5 +11,12 @@ ''; }); }) + + (final: prev: { + lollypop = prev.lollypop.override { + lastFMSupport = false; + youtubeSupport = false; + }; + }) ]; }