From 087c138906f532533f34778efadedc80fa8ee08d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sun, 24 Oct 2021 09:48:31 +0200 Subject: [PATCH] fix(beets): remove buggy lyrics plugin --- configs/beets.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/beets.nix b/configs/beets.nix index 86e8cbf..af681f8 100644 --- a/configs/beets.nix +++ b/configs/beets.nix @@ -5,7 +5,7 @@ "beets/config.yaml".source = (pkgs.formats.yaml {}).generate "config.yaml" { directory = "~/cloud/syncthing/music"; library = "~/cloud/syncthing/common/music.db"; - plugins = lib.concatStringsSep " " [ "fetchart" "lastgenre" "lyrics" ]; + plugins = toString [ "fetchart" "lastgenre" ]; }; }; }