nixos-configs/devices/homie/modules/home-assistant/spotify-sentences.nix

24 lines
367 B
Nix
Raw Normal View History

{
language = "en";
intents = {
PlayArtist.data = [
{
sentences = [
"play [some] music from [artist] {artist}"
];
}
];
};
lists = {
artist.wildcard = true;
};
responses.intents = {
PlayArtist.default = ''
Searching for {{ slots.artist }} on Spotify and playing their top songs.
'';
};
}