feat: install beets and setup settings.

This commit is contained in:
CronyAkatsuki 2025-12-21 11:08:32 +01:00
parent 5ab9dfa615
commit 70664909f2

View file

@ -22,10 +22,21 @@
inputs.hb-downloader.packages.${stdenv.hostPlatform.system}.default
inputs.extract-romset.packages.${stdenv.hostPlatform.system}.default
inputs.note.packages.${stdenv.hostPlatform.system}.default
beets
croc
];
programs.beets = {
enable = true;
settings = {
directory = "~/music/to-listen/";
library = "~/.local/share/beets.db";
plugins = "fromfilename chroma embedart fetchart duplicates";
import = {
move = true;
};
};
};
# Setup rclone
programs.rclone = {
enable = true;