diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-08 14:01:43 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-08 14:01:43 +0200 |
commit | 858ce8914beab932a66eb7ff4b01edec26a01162 (patch) | |
tree | 584a0e0ccbbff7d7a5c903df5bc6f8e9cdd4e769 | |
parent | fix(home/beets): Completely disable the `scrub` plugin (diff) | |
download | nixos-config-858ce8914beab932a66eb7ff4b01edec26a01162.tar.gz nixos-config-858ce8914beab932a66eb7ff4b01edec26a01162.zip |
fix(home/beets): Tell beets to look for deezer id's
Diffstat (limited to '')
-rw-r--r-- | modules/home/conf/beets/default.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix index b5063b24..cb28ede9 100644 --- a/modules/home/conf/beets/default.nix +++ b/modules/home/conf/beets/default.nix @@ -104,10 +104,14 @@ "mpdupdate" # Update MPD database on import ]; + musicbrainz = { + # Search for deezer id's and use them in the autotagger + external_ids = { + deezer = true; + }; + }; + # Log-on config - # musicbrainz: - # external_ids: - # deezer: true # TODO: Add this, to upload the generated fingerprints (to help improve their # database) <2024-08-07> # acoustid = { |