2019-07-03 21:03:33 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2017-12-08 13:04:35 +00:00
|
|
|
let
|
2019-07-03 21:03:33 +00:00
|
|
|
kodi-host = "192.168.8.11";
|
2019-09-25 12:03:46 +00:00
|
|
|
ten_hours = import ./multi/10h_timers.nix { inherit lib; }; # provides: timer automation script
|
|
|
|
mittagessen = import ./multi/mittagessen.nix { inherit lib; }; # provides: automation script
|
|
|
|
matrix = import ./multi/matrix.nix { inherit lib; }; # provides: matrix automation
|
2019-11-05 22:01:37 +00:00
|
|
|
frosch = import ./multi/frosch.nix { inherit lib; }; # provides: sensor binary_sensor switch light script automation
|
|
|
|
aramark = import ./multi/aramark.nix { inherit lib; }; # provides: sensor binary_sensor
|
|
|
|
standup = import ./multi/daily-standup.nix { inherit lib; }; # provides: automation script
|
2017-12-08 13:04:35 +00:00
|
|
|
in {
|
2019-07-04 06:06:35 +00:00
|
|
|
imports = [
|
|
|
|
./ota.nix
|
2019-09-25 12:04:12 +00:00
|
|
|
./comic-updater.nix
|
2019-07-04 06:06:35 +00:00
|
|
|
];
|
2019-07-03 21:03:33 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [ 8123 ];
|
|
|
|
state = [ "/var/lib/hass/known_devices.yaml" ];
|
|
|
|
services.home-assistant = let
|
|
|
|
dwd_pollen = pkgs.fetchFromGitHub {
|
|
|
|
owner = "marcschumacher";
|
|
|
|
repo = "dwd_pollen";
|
|
|
|
rev = "0.1";
|
|
|
|
sha256 = "1af2mx99gv2hk1ad53g21fwkdfdbymqcdl3jvzd1yg7dgxlkhbj1";
|
|
|
|
};
|
|
|
|
in {
|
2017-12-08 13:04:35 +00:00
|
|
|
enable = true;
|
2019-07-03 21:03:33 +00:00
|
|
|
package = (pkgs.home-assistant.overrideAttrs (old: {
|
|
|
|
# TODO: find correct python package
|
2019-07-17 12:37:34 +00:00
|
|
|
installCheckPhase = ''
|
|
|
|
echo LOLLLLLLLLLLLLLL
|
|
|
|
'';
|
2019-07-03 21:03:33 +00:00
|
|
|
postInstall = ''
|
|
|
|
cp -r ${dwd_pollen} $out/lib/python3.7/site-packages/homeassistant/components/dwd_pollen
|
|
|
|
'';
|
|
|
|
})).override {
|
|
|
|
extraPackages = ps: with ps; [
|
|
|
|
pkgs.pico2wave
|
|
|
|
python-forecastio jsonrpc-async jsonrpc-websocket mpd2
|
2019-10-30 07:01:44 +00:00
|
|
|
(callPackage ./deps/openwrt-luci-rpc.nix { })
|
2019-07-03 21:03:33 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
autoExtraComponents = true;
|
|
|
|
config = {
|
|
|
|
homeassistant = {
|
|
|
|
name = "Bureautomation";
|
|
|
|
time_zone = "Europe/Berlin";
|
|
|
|
latitude = "48.8265";
|
|
|
|
longitude = "9.0676";
|
|
|
|
elevation = 303;
|
|
|
|
auth_providers = [
|
|
|
|
{ type = "homeassistant";}
|
2019-10-30 07:01:44 +00:00
|
|
|
{ type = "legacy_api_password";
|
|
|
|
api_password = "sistemas";
|
|
|
|
}
|
2019-07-03 21:03:33 +00:00
|
|
|
{ type = "trusted_networks";
|
2019-10-29 16:16:12 +00:00
|
|
|
trusted_networks = [
|
|
|
|
"127.0.0.1/32"
|
|
|
|
"192.168.8.0/24"
|
|
|
|
"::1/128"
|
|
|
|
"fd00::/8"
|
|
|
|
];
|
2019-07-03 21:03:33 +00:00
|
|
|
# allow_bypass_login = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
# https://www.home-assistant.io/components/influxdb/
|
|
|
|
influxdb = {
|
|
|
|
database = "hass";
|
|
|
|
tags = {
|
|
|
|
instance = "wbob";
|
|
|
|
source = "hass";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
matrix = matrix.matrix;
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
2019-11-05 22:01:37 +00:00
|
|
|
switch = (import ./switch/tasmota_switch.nix)
|
|
|
|
++ frosch.switch
|
|
|
|
++ (import ./switch/rfbridge.nix);
|
|
|
|
light = (import ./light/statuslight.nix)
|
|
|
|
++ (import ./light/buzzer.nix)
|
|
|
|
++ frosch.light;
|
2019-07-03 21:03:33 +00:00
|
|
|
timer = ten_hours.timer;
|
|
|
|
notify = [
|
|
|
|
{
|
|
|
|
platform = "kodi";
|
|
|
|
name = "wbob-kodi";
|
|
|
|
host = kodi-host;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
platform = "telegram";
|
|
|
|
name = "telegrambot";
|
|
|
|
chat_id = builtins.elemAt
|
|
|
|
(builtins.fromJSON (builtins.readFile
|
|
|
|
<secrets/hass/telegram-bot.json>)).allowed_chat_ids 0;
|
|
|
|
}
|
|
|
|
] ++ matrix.notify;
|
|
|
|
media_player = [
|
|
|
|
{ platform = "kodi";
|
|
|
|
host = kodi-host;
|
|
|
|
}
|
|
|
|
{ platform = "mpd";
|
|
|
|
host = "127.0.0.1";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
script = lib.fold lib.recursiveUpdate {} [
|
|
|
|
((import ./script/multi_blink.nix) {inherit lib;})
|
2019-11-05 22:01:37 +00:00
|
|
|
frosch.script
|
2019-07-03 21:03:33 +00:00
|
|
|
ten_hours.script
|
|
|
|
mittagessen.script
|
2019-11-05 22:01:37 +00:00
|
|
|
standup.script
|
2019-07-03 21:03:33 +00:00
|
|
|
];
|
|
|
|
binary_sensor =
|
2019-11-05 22:01:37 +00:00
|
|
|
(import ./binary_sensor/buttons.nix)
|
|
|
|
++ (import ./binary_sensor/motion.nix)
|
|
|
|
++ frosch.binary_sensor
|
|
|
|
++ aramark.binary_sensor;
|
2019-07-03 21:03:33 +00:00
|
|
|
|
|
|
|
sensor =
|
2019-10-30 07:01:44 +00:00
|
|
|
# [{ platform = "version"; }] ++ # pyhaversion
|
2019-11-05 22:01:37 +00:00
|
|
|
(import ./sensor/pollen.nix)
|
|
|
|
++ (import ./sensor/espeasy.nix)
|
|
|
|
++ (import ./sensor/airquality.nix)
|
|
|
|
++ ((import ./sensor/outside.nix) {inherit lib;})
|
|
|
|
++ (import ./sensor/influxdb.nix)
|
|
|
|
++ (import ./sensor/tasmota_firmware.nix)
|
|
|
|
++ frosch.sensor
|
|
|
|
++ aramark.sensor;
|
2019-07-03 21:03:33 +00:00
|
|
|
|
|
|
|
camera =
|
2019-09-25 12:04:12 +00:00
|
|
|
(import ./camera/verkehrskamera.nix)
|
|
|
|
++ (import ./camera/comic.nix);
|
2019-07-03 21:03:33 +00:00
|
|
|
|
2019-11-05 22:01:37 +00:00
|
|
|
person =
|
|
|
|
(import ./person/team.nix );
|
2019-07-03 21:03:33 +00:00
|
|
|
|
|
|
|
frontend = { };
|
|
|
|
http = {
|
|
|
|
# TODO: https://github.com/home-assistant/home-assistant/issues/16149
|
|
|
|
base_url = "http://192.168.8.11:8123";
|
|
|
|
};
|
|
|
|
conversation = {};
|
|
|
|
history = {};
|
|
|
|
logbook = {};
|
|
|
|
tts = [
|
2019-10-29 16:16:12 +00:00
|
|
|
{ platform = "google_translate";
|
2019-07-03 21:03:33 +00:00
|
|
|
language = "de";
|
2019-10-29 16:16:12 +00:00
|
|
|
time_memory = 57600;
|
|
|
|
service_name = "google_say";
|
2019-07-03 21:03:33 +00:00
|
|
|
}
|
|
|
|
{ platform = "voicerss";
|
|
|
|
api_key = builtins.readFile <secrets/hass/voicerss.apikey>;
|
|
|
|
language = "de-de";
|
|
|
|
}
|
|
|
|
{ platform = "picotts";
|
|
|
|
language = "de-DE";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
recorder = {};
|
|
|
|
sun = {};
|
|
|
|
telegram_bot = [
|
|
|
|
(builtins.fromJSON
|
|
|
|
(builtins.readFile <secrets/hass/telegram-bot.json>))
|
|
|
|
];
|
|
|
|
group =
|
|
|
|
{ default_view =
|
|
|
|
{ view = "yes";
|
|
|
|
entities = [
|
|
|
|
"group.sensors"
|
|
|
|
"group.camera"
|
|
|
|
"group.outside"
|
|
|
|
"group.team"
|
|
|
|
"group.nachtlicht"
|
|
|
|
"group.switches"
|
2019-09-25 12:04:12 +00:00
|
|
|
"group.aramark"
|
2019-07-03 21:03:33 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
automation = [];
|
|
|
|
|
|
|
|
switches = [
|
|
|
|
"switch.bauarbeiterlampe"
|
|
|
|
"switch.blitzdings"
|
|
|
|
"switch.fernseher"
|
|
|
|
"switch.feuer"
|
|
|
|
"light.status_felix"
|
|
|
|
"light.status_daniel"
|
|
|
|
"light.buslicht"
|
|
|
|
];
|
|
|
|
team = [
|
2019-11-05 22:01:37 +00:00
|
|
|
"person.thorsten"
|
|
|
|
#"device_tracker.thorsten_phone"
|
|
|
|
"person.felix"
|
|
|
|
"person.ecki"
|
|
|
|
"person.daniel"
|
|
|
|
# "person.carsten"
|
|
|
|
"person.thierry"
|
|
|
|
"person.frank"
|
|
|
|
"person.emeka"
|
|
|
|
#"device_tracker.felix_phone"
|
|
|
|
#"device_tracker.ecki_tablet"
|
|
|
|
#"device_tracker.daniel_phone"
|
|
|
|
#"device_tracker.carsten_phone"
|
|
|
|
#"device_tracker.thierry_phone"
|
|
|
|
#"device_tracker.frank_phone"
|
|
|
|
#"device_tracker.emeka_phone"
|
2019-07-03 21:03:33 +00:00
|
|
|
# "person.thorsten"
|
|
|
|
# "person.felix"
|
|
|
|
# "person.ecki"
|
|
|
|
# "person.daniel"
|
|
|
|
];
|
|
|
|
camera = [
|
|
|
|
"camera.Baumarkt"
|
|
|
|
"camera.Autobahn_Heilbronn"
|
|
|
|
"camera.Autobahn_Singen"
|
2019-09-25 12:04:12 +00:00
|
|
|
"camera.poorly_drawn_lines"
|
2019-07-03 21:03:33 +00:00
|
|
|
];
|
|
|
|
nachtlicht = [
|
|
|
|
"switch.nachtlicht_a"
|
|
|
|
"switch.nachtlicht_b"
|
|
|
|
"switch.nachtlicht_c"
|
|
|
|
"switch.nachtlicht_d"
|
|
|
|
];
|
2019-09-25 12:04:12 +00:00
|
|
|
Aramark = [
|
|
|
|
"binary_sensor.pommes"
|
|
|
|
"sensor.menu_1"
|
|
|
|
"sensor.menu_1_text"
|
|
|
|
"sensor.menu_1_preis"
|
|
|
|
"sensor.menu_2"
|
|
|
|
"sensor.menu_2_text"
|
|
|
|
"sensor.menu_2_preis"
|
|
|
|
"sensor.aktion"
|
|
|
|
"sensor.aktion_text"
|
|
|
|
"sensor.aktion_preis"
|
|
|
|
"sensor.mercato"
|
|
|
|
"sensor.mercato_text"
|
|
|
|
"sensor.mercato_preis"
|
|
|
|
];
|
2019-07-03 21:03:33 +00:00
|
|
|
sensors = [
|
|
|
|
"media_player.kodi"
|
|
|
|
"timer.felix_10h"
|
|
|
|
"timer.frank_10h"
|
|
|
|
"sensor.easy2_dht22_humidity"
|
|
|
|
"sensor.easy2_dht22_temperature"
|
2019-07-04 06:06:35 +00:00
|
|
|
"sensor.air_quality"
|
2019-09-25 12:04:12 +00:00
|
|
|
# "binary_sensor.aramark_pommes"
|
2019-07-03 21:03:33 +00:00
|
|
|
# "binary_sensor.redbutton"
|
|
|
|
];
|
|
|
|
outside = [
|
|
|
|
# "sensor.ditzingen_pm10"
|
|
|
|
# "sensor.ditzingen_pm25"
|
|
|
|
"sensor.dark_sky_icon"
|
|
|
|
"sensor.dark_sky_temperature"
|
|
|
|
"sensor.dark_sky_humidity"
|
|
|
|
"sensor.dark_sky_uv_index"
|
|
|
|
# "sensor.dark_sky_pressure"
|
|
|
|
"sensor.dark_sky_hourly_summary"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
# only for automation
|
|
|
|
# feedreader.urls = [ "http://www.heise.de/security/rss/news-atom.xml" ];
|
|
|
|
# we don't use imports because the expressions do not merge in
|
|
|
|
# home-assistant
|
2019-11-05 22:01:37 +00:00
|
|
|
automation = (import ./automation/bureau-shutdown.nix)
|
|
|
|
++ (import ./automation/nachtlicht.nix)
|
|
|
|
++ (import ./automation/schlechteluft.nix)
|
|
|
|
++ (import ./automation/hass-restart.nix)
|
|
|
|
++ ten_hours.automation
|
|
|
|
++ matrix.automation
|
|
|
|
++ standup.automation
|
|
|
|
++ frosch.automation
|
|
|
|
++ mittagessen.automation;
|
2019-07-03 21:03:33 +00:00
|
|
|
device_tracker = (import ./device_tracker/openwrt.nix );
|
|
|
|
};
|
2017-12-08 13:04:35 +00:00
|
|
|
};
|
|
|
|
}
|