add beets
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
whipper
|
||||
beets
|
||||
];
|
||||
|
||||
programs.beets = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
directory = "/var/lib/media/music";
|
||||
library = "/var/lib/media/music/library.db";
|
||||
|
||||
plugins = [
|
||||
"fetchart"
|
||||
"embedart"
|
||||
"scrub"
|
||||
];
|
||||
|
||||
per_disc_numbering = true;
|
||||
|
||||
import = {
|
||||
move = true;
|
||||
copy = false;
|
||||
write = true;
|
||||
resume = "ask";
|
||||
incremental = false;
|
||||
timid = false;
|
||||
};
|
||||
|
||||
paths = {
|
||||
default = "$albumartist/$album%aunique{}/$track - $title";
|
||||
};
|
||||
|
||||
fetchart.auto = true;
|
||||
embedart.auto = true;
|
||||
scrub.auto = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user