mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
27 lines
624 B
Nix
27 lines
624 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
programs.beets = {
|
|
enable = false;
|
|
settings = {
|
|
directory = "~/Music/dj/Library";
|
|
library = "~/Music/dj/library.db";
|
|
plugins = "spotify acousticbrainz badfiles duplicates fetchart";
|
|
import = {
|
|
write = "yes";
|
|
copy = "yes";
|
|
resume = "no";
|
|
duplicate_action = "ask";
|
|
default_action = "apply";
|
|
};
|
|
badfiles = { check_on_import = "yes"; };
|
|
match = {
|
|
max_rec = {
|
|
track_length = "strong";
|
|
track_title = "strong";
|
|
track_artist = "strong";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|