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