blob: ed78b49e32bb2ae31f88cfbb84f4065dd6595c8e (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 | # nixos-config - My current NixOS configuration
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of my nixos-config.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{...}:
# 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"
  # Extract things from the music file
  # "xtractor"
  # Calculate replay gain
  "replaygain"
  # Check for bad files
  "badfiles"
  # 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"
  "inline"
  # Warn, when importing a matching item
  "ihate"
  # Filter out duplicates
  "duplicates"
  # Generate fingerprints
  "chroma"
  # Download album art
  "fetchart"
  # 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
]
 |