165 lines
4.5 KiB
Nix
165 lines
4.5 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
shackopen = import ./multi/shackopen.nix;
|
|
wasser = import ./multi/wasser.nix;
|
|
badair = import ./multi/schlechte_luft.nix;
|
|
rollos = import ./multi/rollos.nix;
|
|
in {
|
|
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;
|
|
'';
|
|
};
|
|
};
|
|
services.home-assistant = let
|
|
dwd_pollen = pkgs.fetchFromGitHub {
|
|
owner = "marcschumacher";
|
|
repo = "dwd_pollen";
|
|
rev = "0.1";
|
|
sha256 = "1af2mx99gv2hk1ad53g21fwkdfdbymqcdl3jvzd1yg7dgxlkhbj1";
|
|
};
|
|
in {
|
|
enable = true;
|
|
package = (pkgs.home-assistant.overrideAttrs (old: { # TODO: find correct python package
|
|
installCheckPhase = ''
|
|
echo LOLLLLLLLLLLLLLL
|
|
'';
|
|
postInstall = ''
|
|
cp -r ${dwd_pollen} $out/lib/python3.7/site-packages/homeassistant/components/dwd_pollen
|
|
'';
|
|
})).override {
|
|
extraPackages = ps: with ps; [
|
|
python-forecastio jsonrpc-async jsonrpc-websocket mpd2 pkgs.picotts
|
|
];
|
|
};
|
|
autoExtraComponents = true;
|
|
config = {
|
|
homeassistant = {
|
|
name = "Glados";
|
|
time_zone = "Europe/Berlin";
|
|
latitude = "48.8265";
|
|
longitude = "9.0676";
|
|
elevation = 303;
|
|
auth_providers = [
|
|
{ type = "homeassistant";}
|
|
{ type = "trusted_networks";
|
|
trusted_networks = [
|
|
"127.0.0.1/32"
|
|
"10.42.0.0/16"
|
|
"::1/128"
|
|
"fd00::/8"
|
|
];
|
|
}
|
|
];
|
|
};
|
|
# https://www.home-assistant.io/components/influxdb/
|
|
influxdb = {
|
|
database = "glados";
|
|
host = "influx.shack";
|
|
component_config_glob = {
|
|
"sensor.*particulate_matter_2_5um_concentration".override_measurement = "2_5um particles";
|
|
"sensor.*particulate_matter_10_0um_concentration".override_measurement ="10um particles";
|
|
};
|
|
tags = {
|
|
instance = "wolf";
|
|
source = "glados";
|
|
};
|
|
};
|
|
esphome = {};
|
|
api = {};
|
|
mqtt = {
|
|
broker = "localhost";
|
|
port = 1883;
|
|
client_id = "home-assistant";
|
|
keepalive = 60;
|
|
protocol = 3.1;
|
|
discovery = true; #enable esphome discovery
|
|
discovery_prefix = "homeassistant";
|
|
birth_message = {
|
|
topic = "glados/hass/status/LWT";
|
|
payload = "Online";
|
|
qos = 1;
|
|
retain = true;
|
|
};
|
|
will_message = {
|
|
topic = "glados/hass/status/LWT";
|
|
payload = "Offline";
|
|
qos = 1;
|
|
retain = true;
|
|
};
|
|
};
|
|
switch =
|
|
(import ./switch/power.nix)
|
|
;
|
|
light = [];
|
|
media_player = [
|
|
{ platform = "mpd";
|
|
name = "lounge";
|
|
host = "lounge.mpd.shack";
|
|
}
|
|
{ platform = "mpd";
|
|
name = "kiosk";
|
|
host = "lounge.kiosk.shack";
|
|
}
|
|
];
|
|
|
|
sensor =
|
|
(import ./sensors/power.nix)
|
|
++ (import ./sensors/mate.nix)
|
|
++ (import ./sensors/darksky.nix { inherit lib;})
|
|
++ shackopen.sensor
|
|
++ wasser.sensor
|
|
;
|
|
air_quality = (import ./sensors/sensemap.nix );
|
|
|
|
binary_sensor =
|
|
shackopen.binary_sensor
|
|
++ (import ./sensors/spaceapi.nix)
|
|
;
|
|
|
|
camera = [];
|
|
|
|
frontend = { };
|
|
config = { };
|
|
http = {
|
|
base_url = "http://hass.shack";
|
|
use_x_forwarded_for = true;
|
|
trusted_proxies = "127.0.0.1";
|
|
};
|
|
#conversation = {};
|
|
# history = {};
|
|
#logbook = {};
|
|
logger.default = "info";
|
|
#recorder = {};
|
|
tts = [
|
|
{ platform = "google_translate";
|
|
service_name = "say";
|
|
language = "de";
|
|
cache = true;
|
|
time_memory = 57600;
|
|
}
|
|
];
|
|
sun = {};
|
|
|
|
automation = wasser.automation
|
|
++ badair.automation
|
|
++ rollos.automation
|
|
++ (import ./automation/shack-startup.nix)
|
|
++ (import ./automation/party-time.nix)
|
|
++ (import ./automation/hass-restart.nix);
|
|
|
|
device_tracker = [];
|
|
};
|
|
};
|
|
}
|