nixos-config/nixos/machines/pepe/home-assistant/mpd.nix

14 lines
142 B
Nix
Raw Normal View History

2020-04-08 16:43:09 +02:00
{ lib, ... }:
{
services.homeAssistantConfig = {
media_player = [{
platform = "mpd";
host = "localhost";
}];
};
}