feat: add some more stuff to beets to make it better to use

This commit is contained in:
Teesh 2026-02-15 12:58:13 +02:00
parent 678cc530c4
commit b2c74088c8

View file

@ -4,6 +4,10 @@
};
flake.modules.homeManager.desktop = {
lib,
pkgs,
...
}: {
programs.beets = {
enable = true;
settings = {
@ -11,7 +15,9 @@
import.move = true;
import.copy = false;
paths.default = "$albumartist/$album/$track $title";
plugins = ["fetchart" "musicbrainz"];
plugins = ["embedart" "fetchart" "musicbrainz" "play" "missing"];
play.command = "${lib.getExe pkgs.mpv} --no-video";
};
};
};