stockholm/makefu/2configs/deployment/bureautomation/hass.nix

152 lines
4.3 KiB
Nix
Raw Normal View History

2018-03-07 16:06:11 +00:00
{ pkgs, lib, ... }:
let
2018-09-16 22:40:34 +00:00
tasmota_plug = name: topic:
{ platform = "mqtt";
inherit name;
state_topic = "/bam/${topic}/stat/POWER1";
command_topic = "/bam/${topic}/cmnd/POWER1";
availability_topic = "/bam/${topic}/tele/LWT";
payload_on= "ON";
payload_off= "OFF";
payload_available= "Online";
payload_not_available= "Offline";
};
tasmota_stecki = name: topic:
( tasmota_plug name topic) //
{ state_topic = "/bam/${topic}/stat/POWER";
command_topic = "/bam/${topic}/cmnd/POWER";
};
2018-08-09 22:09:28 +00:00
espeasy_dht22 = name: [
2018-09-16 22:40:34 +00:00
{ platform = "mqtt";
name = "${name} DHT22 Temperature";
device_class = "temperature";
state_topic = "/bam/${name}/dht22/Temperature";
availability_topic = "/bam/${name}/tele/LWT";
payload_available = "Online";
payload_not_available = "Offline";
}
{ platform = "mqtt";
device_class = "humidity";
name = "${name} DHT22 Humidity";
state_topic = "/bam/${name}/dht22/Humidity";
availability_topic = "/bam/${name}/tele/LWT";
payload_available = "Online";
payload_not_available = "Offline";
}];
espeasy_ds18 = name:
{ platform = "mqtt";
name = "${name} DS18 Temperature";
state_topic = "/bam/${name}/ds18/Temperature";
availability_topic = "/bam/${name}/tele/LWT";
payload_available = "Online";
payload_not_available = "Offline";
};
2018-03-07 16:06:11 +00:00
in {
2018-09-16 22:40:34 +00:00
networking.firewall.allowedTCPPorts = [ 8123 ];
2018-08-09 22:09:28 +00:00
nixpkgs.config.permittedInsecurePackages = [
"homeassistant-0.65.5"
2018-03-07 16:06:11 +00:00
];
2018-08-09 22:09:28 +00:00
2018-03-07 16:06:11 +00:00
services.home-assistant = {
enable = true;
config = {
homeassistant = {
name = "Bureautomation";
time_zone = "Europe/Berlin";
};
2018-08-09 22:09:28 +00:00
mqtt = {
broker = "localhost";
port = 1883;
client_id = "home-assistant";
keepalive = 60;
protocol = 3.1;
birth_message = {
topic = "/bam/hass/tele/LWT";
payload = "Online";
qos = 1;
retain = true;
};
will_message = {
topic = "/bam/hass/tele/LWT";
payload = "Offline";
qos = 1;
retain = true;
2018-03-07 16:06:11 +00:00
};
};
2018-08-09 22:09:28 +00:00
switch = [
(tasmota_plug "Bauarbeiterlampe" "plug")
(tasmota_plug "Blitzdings" "plug2")
(tasmota_stecki "Fernseher" "fernseher")
2018-08-09 22:09:28 +00:00
(tasmota_plug "Pluggy" "plug4")
2018-03-07 16:06:11 +00:00
];
2018-08-09 22:09:28 +00:00
binary_sensor = [
2018-09-16 22:40:34 +00:00
{ platform = "mqtt";
2018-08-09 22:09:28 +00:00
device_class = "motion";
2018-09-16 22:40:34 +00:00
name = "Motion";
2018-08-09 22:09:28 +00:00
state_topic = "/bam/easy2/movement/Switch";
payload_on = "1";
payload_off = "0";
2018-09-16 22:40:34 +00:00
availability_topic = "/bam/easy2/tele/LWT";
payload_available = "Online";
payload_not_available = "Offline";
2018-03-07 16:06:11 +00:00
}
];
2018-08-09 22:09:28 +00:00
sensor =
2018-09-16 22:40:34 +00:00
(espeasy_dht22 "easy1") ++
2018-08-09 22:09:28 +00:00
(espeasy_dht22 "easy2") ++
[ (espeasy_ds18 "easy3" )
{ platform = "luftdaten";
name = "Ditzingen";
sensorid = "5341";
monitored_conditions = [ "P1" "P2" ];
}
{ platform = "influxdb";
queries = [
{ name = "mean value of feinstaub P1";
where = '' "node" = 'esp8266-1355142' '';
measurement = "feinstaub";
database = "telegraf";
field = "P1";
}
{ name = "mean value of feinstaub P2";
where = '' "node" = 'esp8266-1355142' '';
measurement = "feinstaub";
database = "telegraf";
field = "P2";
}
];
}
];
2018-03-07 16:06:11 +00:00
frontend = { };
http = { };
2018-08-09 22:09:28 +00:00
feedreader.urls = [ "http://www.heise.de/security/rss/news-atom.xml" ];
automation = [
{ alias = "Turn on Fernseher on movement";
trigger = {
platform = "state";
entity_id = "binary_sensor.motion";
to = "on";
};
action = {
service= "homeassistant.turn_on";
entity_id= "switch.fernseher";
};
}
{ alias = "Turn off Fernseher 10 minutes after last movement";
trigger = {
platform = "state";
entity_id = "binary_sensor.motion";
to = "off";
for.minutes = 10;
};
action = {
service= "homeassistant.turn_off";
entity_id= "switch.fernseher";
};
}
];
2018-03-07 16:06:11 +00:00
};
};
}