blob: 09eeac5bdf91215ceba915f969f89285f3ecd9a4 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# 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"
# 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
]
|