diff --git a/devices/homie/modules/home-assistant/timer.nix b/devices/homie/modules/home-assistant/timer.nix index e294f110..a30b51c8 100644 --- a/devices/homie/modules/home-assistant/timer.nix +++ b/devices/homie/modules/home-assistant/timer.nix @@ -25,8 +25,8 @@ ''| map(attribute='entity_id')'' ]; - settings = { - timer_target = "kitchen"; + settings = rec { + timer_target = timer_target_default; timer_target_default = "media_player.music_player_daemon"; timer_tts = true; @@ -141,17 +141,6 @@ in { }; } - { - alias = "Set volume for timer"; - service = "media_player.volume_set"; - - target.entity_id = ''{{ timer_target }}''; - - data = { - volume_level = ''{{ timer_volume }}''; - }; - } - { alias = "Media file or TTS";