aboutsummaryrefslogtreecommitdiffstats
path: root/modules/home/conf/beets/plugins.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-11 13:25:34 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-11 13:25:34 +0200
commit90358ae73d237ced75e0e99dba456d2b1461f74d (patch)
treea2e13126e73c5b376600b097e7b6b6e6089ed81f /modules/home/conf/beets/plugins.nix
parentfix(home/beets): Improve path sorting and awareness of Live recordings (diff)
downloadnixos-config-90358ae73d237ced75e0e99dba456d2b1461f74d.zip
refactor(home/beets): Move the plugins out into separate directories
Diffstat (limited to 'modules/home/conf/beets/plugins.nix')
-rw-r--r--modules/home/conf/beets/plugins.nix64
1 files changed, 64 insertions, 0 deletions
diff --git a/modules/home/conf/beets/plugins.nix b/modules/home/conf/beets/plugins.nix
new file mode 100644
index 00000000..7ab6819a
--- /dev/null
+++ b/modules/home/conf/beets/plugins.nix
@@ -0,0 +1,64 @@
+{...}:
+# 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"
+
+ # 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
+]