This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/beets/default.nix

32 lines
729 B
Nix
Raw Normal View History

2023-10-09 16:12:39 +01:00
{
2022-08-07 16:37:11 +01:00
programs.beets = {
2023-12-21 17:33:57 +00:00
enable = true;
2022-08-07 16:37:11 +01:00
settings = {
2024-01-20 13:42:38 +00:00
plugins = "duplicates ftintitle fetchart embedart chroma edit lastgenre replaygain badfiles fish";
2022-08-07 16:37:11 +01:00
directory = "/mnt/hdd/Music";
library = "/mnt/hdd/Music/library.db";
2023-05-14 10:23:49 +01:00
# asciify_paths = true;
2022-08-07 16:37:11 +01:00
import = {
2023-05-10 13:37:18 +01:00
"write" = true;
2022-08-07 16:37:11 +01:00
"resume" = true;
"group_albums" = true;
"move" = true;
};
paths = {
2023-05-10 13:37:18 +01:00
"default" = "$albumartist/$year - $album%aunique{}/$track $title";
2024-01-21 18:43:45 +00:00
"singleton" = "$artist/$year - $title";
2023-05-10 13:37:18 +01:00
"comp" = "Compilations/$year - $album%aunique{}/$track $title";
2022-08-07 16:37:11 +01:00
};
replaygain = {
"backend" = "gstreamer";
2024-01-21 18:43:45 +00:00
"threads" = 8;
2022-08-07 16:37:11 +01:00
};
};
};
}