mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
18 lines
341 B
Nix
18 lines
341 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
programs.beets = {
|
|
enable = true;
|
|
package = pkgs.beets;
|
|
settings = {
|
|
directory = "~/media-share/music";
|
|
library = "~/.local/share/beets.db";
|
|
plugins = lib.concatStringsSep " " [
|
|
"mpdstats"
|
|
"mpdupdate"
|
|
"duplicates"
|
|
"chroma"
|
|
];
|
|
};
|
|
};
|
|
}
|