diff options
Diffstat (limited to 'modules/home/conf/beets/plugins.nix')
-rw-r--r-- | modules/home/conf/beets/plugins.nix | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/modules/home/conf/beets/plugins.nix b/modules/home/conf/beets/plugins.nix deleted file mode 100644 index bea2fefe..00000000 --- a/modules/home/conf/beets/plugins.nix +++ /dev/null @@ -1,67 +0,0 @@ -{...}: -# NOTE: This list is here and not split over the various plugin dirs, as we need a way to -# specify the order plugins are loaded in. <2024-08-11> -[ - # Remove all previous tags before import (this is useful to ensure, that - # the metadata in the libary.db is synced with the tags on disk) - # # FIXME: I think, that this also removes the deezer id, which is not ideal - # <2024-08-07> - # "scrub" - - # Help submitting stuff to music brainz - "mbsubmit" - - # Extract things from the music file - "xtractor" - - # Calculate replay gain - "replaygain" - - # Check for bad files - "badfiles" - - # Alows to use inline python for parsing tags - "inline" - - # Support player integration - "play" - - # Show tags on files/queries - "info" - - # Create playlist from `play_count`/`skip_count` (gathered by the `mpdstats` - # plugin) - # Note that this should come _before_ the `mpdupdate` plugin, to ensure that - # `mpdupgate` can propagate changed playlist to `mpd`. - "smartplaylist" - - # Warn, when importing a matching item - "ihate" - - # Allow fuzzy searching - "fuzzy" - - # Filter out duplicates - "duplicates" - - # Generate fingerprints - "chroma" - - # Download album art - "fetchart" - - # Fetches tags from `last.fm` and adds them as genres to imported music - "lastgenre" - - # Run commands on events - "hook" - - # Fetch lyrics - "lyrics" - - # Allow beets to understand deezer id's - # "deezer" - - "mpdstats" # Transfer MPD stats to beets - "mpdupdate" # Update MPD database on import -] |