From fc8a7be201678c06c8adb1d5478c05285355538c Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 1 Oct 2021 18:37:59 +0200 Subject: [PATCH] ma bureautomation: cleanup --- 2configs/bureautomation/light/buzzer.nix | 2 +- 2configs/bureautomation/person/team.nix | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/2configs/bureautomation/light/buzzer.nix b/2configs/bureautomation/light/buzzer.nix index bc2ba4e..4851dbd 100644 --- a/2configs/bureautomation/light/buzzer.nix +++ b/2configs/bureautomation/light/buzzer.nix @@ -25,6 +25,6 @@ in { services.home-assistant.config.light = [ # (tasmota_pwm "RedButton LED" "redbutton" 1 1023) #LED PWM1 - (tasmota_pwm "RedButton Buzzer" "redbutton" 2 512) #buzzer PWM2 + # (tasmota_pwm "RedButton Buzzer" "redbutton" 2 512) #buzzer PWM2 ]; } diff --git a/2configs/bureautomation/person/team.nix b/2configs/bureautomation/person/team.nix index bf3d09c..d0d13dd 100644 --- a/2configs/bureautomation/person/team.nix +++ b/2configs/bureautomation/person/team.nix @@ -1,4 +1,10 @@ +{config, ... }: { + # all configured persons become part of group "team" + services.home-assistant.config.group.team = { + name = "team"; + entities = map (x: "person.${x.name}" ) config.services.home-assistant.config.person; + }; services.home-assistant.config.person = [ { name = "Thorsten";