blob: 635848c0d7d4f04b184f49b0ef13a7453af3c09f (
plain) (
tree)
|
|
{
lib,
pkgs,
config,
...
}: {
programs.beets.settings.play = {
command = "${lib.getExe pkgs.mpc} $args add";
relative_to = config.services.mpd.musicDirectory;
# Run the command with the returned paths as arguments
raw = true;
};
}
|