blob: 1bab337a44a210ea6435d54bdb9bdd585399098d (
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
|
{ config, lib, pkgs, ... }:
{
programs.beets = {
enable = true;
settings = {
directory = "/data/fast/music";
plugins =
"fromfilename discogs duplicates fetchart embedart badfiles scrub";
paths = { default = "$albumartist/$album%aunique{}/$track $title"; };
import = {
copy = true;
move = true;
};
va_name = "Various Artists";
embedart = { ifempty = true; };
fetchart = {
cautious = true;
sources = "filesystem coverart itunes amazon lastfm wikipedia";
};
};
};
}
|