small things idk

This commit is contained in:
xunuwu 2025-02-05 15:52:28 +01:00
parent 0f776f259f
commit e34a1c4dbc
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
5 changed files with 43 additions and 13 deletions

View file

@ -0,0 +1,25 @@
{pkgs, ...}: let
musicDir = "/home/xun/music/test";
in {
programs.beets = {
enable = true;
package = pkgs.beets-unstable;
settings = {
directory = "${musicDir}/tagged";
library = "${musicDir}/beets/beets.db";
# import = {
# };
plugins = [
"rewrite"
];
rewrite = {
"artist GHOST" = "Ghost and Pals";
};
# plugins = [
# ];
};
};
}