blob: 617ff624e1c8459918db7831be230132cf229b5b (
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
|
{ config, lib, pkgs, ... }:
let cfg = config.my.home.beets;
in {
options.my.home.beets = with lib; {
enable = mkEnableOption "beets configuration";
musicDirectory = mkOption {
type = types.str;
example = "/home/fcuny/media/music";
description = "path to the music directory";
};
};
config.programs.beets = lib.mkIf cfg.enable {
enable = true;
settings = {
directory = cfg.musicDirectory;
plugins =
"fromfilename discogs duplicates fetchart embedart badfiles lastgenre scrub";
paths = {
default = "$albumartist/$album%aunique{}/$track $title";
singleton = "Singles/$artist/$title";
comp = "Compilations/$album%aunique{}/$track - $title";
"albumtype:soundtrack" = "Soundtracks/$album ($year)/$track $title";
};
import = {
copy = true;
move = true;
};
va_name = "Various Artists";
embedart = { ifempty = true; };
lastgenre = {
auto = false;
canonical = true;
fallback = "unknown";
force = true;
prefer_specific = true;
};
fetchart = {
cautious = true;
sources = "filesystem coverart itunes amazon lastfm wikipedia";
};
};
};
}
|