small things idk
This commit is contained in:
parent
0f776f259f
commit
e34a1c4dbc
5 changed files with 43 additions and 13 deletions
25
home/profiles/programs/music/beets.nix
Normal file
25
home/profiles/programs/music/beets.nix
Normal 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 = [
|
||||
# ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue