2018-03-07 16:06:11 +00:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
let
|
2019-04-04 07:50:16 +00:00
|
|
|
kodi-host = "192.168.8.11";
|
2018-03-07 16:06:11 +00:00
|
|
|
in {
|
2018-09-16 22:40:34 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [ 8123 ];
|
2019-04-04 07:50:16 +00:00
|
|
|
state = [ "/var/lib/hass/known_devices.yaml" ];
|
2018-03-07 16:06:11 +00:00
|
|
|
services.home-assistant = {
|
|
|
|
enable = true;
|
2019-04-17 18:46:58 +00:00
|
|
|
package = pkgs.home-assistant.override { python3 = pkgs.python36; };
|
2018-03-07 16:06:11 +00:00
|
|
|
config = {
|
|
|
|
homeassistant = {
|
|
|
|
name = "Bureautomation";
|
|
|
|
time_zone = "Europe/Berlin";
|
2018-11-05 12:51:28 +00:00
|
|
|
latitude = "48.8265";
|
|
|
|
longitude = "9.0676";
|
|
|
|
elevation = 303;
|
2019-04-17 18:46:58 +00:00
|
|
|
auth_providers = [
|
|
|
|
{ type = "homeassistant";}
|
|
|
|
{ type = "legacy_api_password";}
|
|
|
|
{ type = "trusted_networks";
|
|
|
|
# allow_bypass_login = true;
|
|
|
|
}
|
|
|
|
];
|
2018-03-07 16:06:11 +00:00
|
|
|
};
|
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
|
|
|
};
|
|
|
|
};
|
2019-04-04 07:50:16 +00:00
|
|
|
switch = (import ./switch/tasmota_switch.nix) ++
|
|
|
|
(import ./switch/rfbridge.nix);
|
2019-03-06 15:42:27 +00:00
|
|
|
light = (import ./light/statuslight.nix) ++
|
|
|
|
(import ./light/buzzer.nix);
|
|
|
|
timer = {
|
|
|
|
felix_10h = {
|
|
|
|
name = "Felix 10h Timer";
|
|
|
|
duration = "10:00:00";
|
|
|
|
};
|
|
|
|
felix_8_30h = {
|
|
|
|
name = "Felix 8_30h Timer";
|
|
|
|
duration = "08:30:00";
|
|
|
|
};
|
|
|
|
felix_7h = {
|
|
|
|
name = "Felix 7h Timer";
|
|
|
|
duration = "07:00:00";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
notify = [
|
|
|
|
{
|
|
|
|
platform = "kodi";
|
2019-04-04 23:44:29 +00:00
|
|
|
name = "wbob-kodi";
|
2019-04-04 07:50:16 +00:00
|
|
|
host = kodi-host;
|
|
|
|
}
|
2019-04-04 23:44:29 +00:00
|
|
|
{
|
|
|
|
platform = "telegram";
|
|
|
|
name = "telegrambot";
|
|
|
|
chat_id = builtins.elemAt
|
|
|
|
(builtins.fromJSON (builtins.readFile
|
|
|
|
<secrets/hass/telegram-bot.json>)).allowed_chat_ids 0;
|
|
|
|
}
|
2019-04-04 07:50:16 +00:00
|
|
|
];
|
|
|
|
media_player = [
|
|
|
|
{ platform = "kodi";
|
|
|
|
host = kodi-host;
|
2018-03-07 16:06:11 +00:00
|
|
|
}
|
|
|
|
];
|
2019-03-06 15:42:27 +00:00
|
|
|
script = (import ./script/multi_blink.nix) {inherit lib;};
|
|
|
|
binary_sensor =
|
|
|
|
(import ./binary_sensor/buttons.nix) ++
|
|
|
|
(import ./binary_sensor/motion.nix);
|
|
|
|
|
2018-08-09 22:09:28 +00:00
|
|
|
sensor =
|
2019-03-06 15:42:27 +00:00
|
|
|
(import ./sensor/espeasy.nix) ++
|
|
|
|
((import ./sensor/outside.nix) {inherit lib;}) ++
|
2019-04-17 18:46:58 +00:00
|
|
|
(import ./sensor/influxdb.nix) ++
|
|
|
|
(import ./sensor/tasmota_firmware.nix);
|
2019-03-06 15:42:27 +00:00
|
|
|
|
|
|
|
camera =
|
|
|
|
(import ./camera/verkehrskamera.nix);
|
2018-11-05 12:51:28 +00:00
|
|
|
|
2019-04-04 07:50:16 +00:00
|
|
|
# not yet released
|
|
|
|
#person =
|
|
|
|
# (import ./person/team.nix );
|
|
|
|
|
2018-03-07 16:06:11 +00:00
|
|
|
frontend = { };
|
2019-04-17 18:46:58 +00:00
|
|
|
http = {
|
|
|
|
# TODO: https://github.com/home-assistant/home-assistant/issues/16149
|
|
|
|
api_password = "sistemas";
|
|
|
|
trusted_networks = [
|
|
|
|
"127.0.0.1/32"
|
|
|
|
"192.168.8.0/24"
|
|
|
|
"::1/128"
|
|
|
|
"fd00::/8"
|
|
|
|
];
|
|
|
|
};
|
2018-11-05 12:51:28 +00:00
|
|
|
conversation = {};
|
|
|
|
history = {};
|
|
|
|
logbook = {};
|
|
|
|
tts = [ { platform = "google";} ];
|
|
|
|
recorder = {};
|
2019-04-17 18:46:58 +00:00
|
|
|
sun = {};
|
2019-04-04 23:44:29 +00:00
|
|
|
telegram_bot = [
|
|
|
|
(builtins.fromJSON
|
|
|
|
(builtins.readFile <secrets/hass/telegram-bot.json>))
|
|
|
|
];
|
2018-11-05 12:51:28 +00:00
|
|
|
group =
|
|
|
|
{ default_view =
|
|
|
|
{ view = "yes";
|
|
|
|
entities = [
|
|
|
|
"group.sensors"
|
2019-04-04 07:50:16 +00:00
|
|
|
"group.camera"
|
2018-11-05 12:51:28 +00:00
|
|
|
"group.outside"
|
2019-04-04 07:50:16 +00:00
|
|
|
"group.team"
|
|
|
|
"group.nachtlicht"
|
2019-04-04 20:54:18 +00:00
|
|
|
"group.switches"
|
2018-11-05 12:51:28 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
automation = [
|
|
|
|
];
|
|
|
|
switches = [
|
|
|
|
"switch.bauarbeiterlampe"
|
|
|
|
"switch.blitzdings"
|
|
|
|
"switch.fernseher"
|
2019-01-22 08:03:57 +00:00
|
|
|
"switch.feuer"
|
2019-01-28 07:30:23 +00:00
|
|
|
"light.status_felix"
|
2019-03-06 15:42:27 +00:00
|
|
|
"light.status_daniel"
|
|
|
|
"light.buslicht"
|
2018-11-05 12:51:28 +00:00
|
|
|
];
|
2019-04-04 07:50:16 +00:00
|
|
|
team = [
|
|
|
|
"device_tracker.thorsten_phone"
|
|
|
|
"device_tracker.felix_phone"
|
|
|
|
"device_tracker.ecki_tablet"
|
|
|
|
"device_tracker.daniel_phone"
|
|
|
|
"device_tracker.carsten_phone"
|
|
|
|
# "person.thorsten"
|
|
|
|
# "person.felix"
|
|
|
|
# "person.ecki"
|
|
|
|
# "person.daniel"
|
|
|
|
];
|
|
|
|
camera = [
|
|
|
|
"camera.Baumarkt"
|
|
|
|
"camera.Autobahn_Heilbronn"
|
|
|
|
"camera.Autobahn_Singen"
|
|
|
|
];
|
|
|
|
nachtlicht = [
|
|
|
|
"switch.nachtlicht_a"
|
|
|
|
"switch.nachtlicht_b"
|
|
|
|
"switch.nachtlicht_c"
|
|
|
|
"switch.nachtlicht_d"
|
|
|
|
];
|
2018-11-05 12:51:28 +00:00
|
|
|
sensors = [
|
2019-04-04 07:50:16 +00:00
|
|
|
"media_player.kodi"
|
|
|
|
"script.blitz_10s"
|
|
|
|
"script.buzz_red_led_fast"
|
|
|
|
"timer.felix_10h"
|
2018-11-05 12:51:28 +00:00
|
|
|
"sensor.easy2_dht22_humidity"
|
|
|
|
"sensor.easy2_dht22_temperature"
|
2019-04-04 07:50:16 +00:00
|
|
|
# "binary_sensor.redbutton"
|
2018-11-05 12:51:28 +00:00
|
|
|
];
|
|
|
|
outside = [
|
2019-03-06 15:42:27 +00:00
|
|
|
# "sensor.ditzingen_pm10"
|
|
|
|
# "sensor.ditzingen_pm25"
|
2019-04-17 18:46:58 +00:00
|
|
|
"sensor.dark_sky_icon"
|
2018-11-05 12:51:28 +00:00
|
|
|
"sensor.dark_sky_temperature"
|
|
|
|
"sensor.dark_sky_humidity"
|
2019-04-17 18:46:58 +00:00
|
|
|
"sensor.dark_sky_uv_index"
|
2019-03-06 15:42:27 +00:00
|
|
|
# "sensor.dark_sky_pressure"
|
2018-11-05 12:51:28 +00:00
|
|
|
"sensor.dark_sky_hourly_summary"
|
2019-04-04 07:50:16 +00:00
|
|
|
"device_tracker.router"
|
2018-11-05 12:51:28 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
# only for automation
|
|
|
|
# feedreader.urls = [ "http://www.heise.de/security/rss/news-atom.xml" ];
|
2019-03-06 15:42:27 +00:00
|
|
|
# we don't use imports because the expressions do not merge in
|
|
|
|
# home-assistant
|
|
|
|
automation = (import ./automation/bureau-shutdown.nix) ++
|
|
|
|
(import ./automation/nachtlicht.nix) ++
|
2019-04-17 18:46:58 +00:00
|
|
|
(import ./automation/hass-restart.nix) ++
|
2019-03-06 15:42:27 +00:00
|
|
|
(import ./automation/10h_timer.nix);
|
2019-04-04 07:50:16 +00:00
|
|
|
device_tracker = (import ./device_tracker/openwrt.nix );
|
2018-03-07 16:06:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|