shack/glados: update automations

This commit is contained in:
makefu 2019-09-19 21:31:21 +02:00
parent 8901bab8ad
commit 4bb7a52e98
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 19 additions and 15 deletions

View File

@ -3,18 +3,21 @@ let
shackopen = import ./multi/shackopen.nix;
wasser = import ./multi/wasser.nix;
in {
services.nginx.virtualHosts."hass.shack".locations."/" = {
proxyPass = "http://localhost:8123";
extraConfig = ''
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
services.nginx.virtualHosts."hass.shack" = {
serverAliases = [ "glados.shack" ];
locations."/" = {
proxyPass = "http://localhost:8123";
extraConfig = ''
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_buffering off;
'';
proxy_buffering off;
'';
};
};
services.home-assistant = let
dwd_pollen = pkgs.fetchFromGitHub {

View File

@ -12,6 +12,7 @@ let
retain = false;
qos = 1;
};
seconds = 30;
in
{
switch = [
@ -19,7 +20,7 @@ in
];
automation =
[
{ alias = "Water the plant for 10 seconds";
{ alias = "Water the plant for ${toString seconds} seconds";
trigger = [
{ # trigger at 20:00 no matter what
# TODO: retry or run only if switch.wasser is available
@ -35,7 +36,7 @@ in
"switch.wasser"
];
}
{ delay.seconds = 10; }
{ delay.seconds = seconds; }
{
service = "homeassistant.turn_off";
entity_id = [
@ -44,13 +45,13 @@ in
}
];
}
{ alias = "Always turn off water after 15 seconds";
{ alias = "Always turn off water after ${toString (seconds * 2)}seconds";
trigger = [
{
platform = "state";
entity_id = "switch.wasser";
to = "on";
for.seconds = 15;
for.seconds = seconds*2;
}
];
action =