2019-09-02 11:57:06 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
2021-02-16 20:58:48 +00:00
|
|
|
unstable = import (pkgs.fetchFromGitHub {
|
|
|
|
owner = "nixos";
|
|
|
|
repo = "nixpkgs";
|
|
|
|
rev = (lib.importJSON ../../../nixpkgs-unstable.json).rev;
|
|
|
|
sha256 = (lib.importJSON ../../../nixpkgs-unstable.json).sha256;
|
|
|
|
}) {};
|
2019-09-02 11:57:06 +00:00
|
|
|
in {
|
2019-09-19 19:31:21 +00:00
|
|
|
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;
|
2019-09-02 11:57:06 +00:00
|
|
|
|
2019-09-19 19:31:21 +00:00
|
|
|
proxy_buffering off;
|
|
|
|
'';
|
|
|
|
};
|
2019-09-02 11:57:06 +00:00
|
|
|
};
|
2020-12-01 22:20:31 +00:00
|
|
|
imports = [
|
|
|
|
./multi/shackopen.nix
|
|
|
|
./multi/wasser.nix
|
|
|
|
./multi/schlechte_luft.nix
|
|
|
|
./multi/rollos.nix
|
|
|
|
|
|
|
|
./switch/power.nix
|
|
|
|
|
|
|
|
./sensors/power.nix
|
|
|
|
./sensors/mate.nix
|
|
|
|
./sensors/darksky.nix
|
|
|
|
./sensors/spaceapi.nix
|
|
|
|
./sensors/sensemap.nix
|
|
|
|
|
|
|
|
./automation/shack-startup.nix
|
|
|
|
./automation/party-time.nix
|
|
|
|
./automation/hass-restart.nix
|
2021-12-04 16:30:13 +00:00
|
|
|
./automation/ampel.nix
|
2020-12-01 22:20:31 +00:00
|
|
|
|
|
|
|
];
|
2020-11-17 20:32:24 +00:00
|
|
|
services.home-assistant =
|
|
|
|
{
|
2019-09-02 11:57:06 +00:00
|
|
|
enable = true;
|
2021-02-16 20:58:48 +00:00
|
|
|
package = unstable.home-assistant.overrideAttrs (old: {
|
|
|
|
doInstallCheck = false;
|
|
|
|
});
|
2019-09-02 11:57:06 +00:00
|
|
|
config = {
|
|
|
|
homeassistant = {
|
2020-01-08 17:42:09 +00:00
|
|
|
name = "Glados";
|
2019-09-02 11:57:06 +00:00
|
|
|
time_zone = "Europe/Berlin";
|
|
|
|
latitude = "48.8265";
|
|
|
|
longitude = "9.0676";
|
|
|
|
elevation = 303;
|
|
|
|
auth_providers = [
|
|
|
|
{ type = "homeassistant";}
|
|
|
|
{ type = "trusted_networks";
|
2019-11-06 23:25:42 +00:00
|
|
|
trusted_networks = [
|
|
|
|
"127.0.0.1/32"
|
|
|
|
"10.42.0.0/16"
|
|
|
|
"::1/128"
|
|
|
|
"fd00::/8"
|
|
|
|
];
|
2019-09-02 11:57:06 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
# https://www.home-assistant.io/components/influxdb/
|
2020-09-08 22:32:10 +00:00
|
|
|
influxdb = {
|
|
|
|
database = "glados";
|
|
|
|
host = "influx.shack";
|
2020-09-16 20:21:53 +00:00
|
|
|
component_config_glob = {
|
|
|
|
"sensor.*particulate_matter_2_5um_concentration".override_measurement = "2_5um particles";
|
|
|
|
"sensor.*particulate_matter_10_0um_concentration".override_measurement ="10um particles";
|
|
|
|
};
|
2020-09-08 22:32:10 +00:00
|
|
|
tags = {
|
|
|
|
instance = "wolf";
|
|
|
|
source = "glados";
|
|
|
|
};
|
|
|
|
};
|
2020-07-22 14:25:00 +00:00
|
|
|
esphome = {};
|
|
|
|
api = {};
|
2019-09-02 11:57:06 +00:00
|
|
|
mqtt = {
|
|
|
|
broker = "localhost";
|
|
|
|
port = 1883;
|
|
|
|
client_id = "home-assistant";
|
|
|
|
keepalive = 60;
|
|
|
|
protocol = 3.1;
|
2020-02-20 13:00:17 +00:00
|
|
|
discovery = true; #enable esphome discovery
|
|
|
|
discovery_prefix = "homeassistant";
|
2019-09-02 11:57:06 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
2020-02-20 13:00:17 +00:00
|
|
|
light = [];
|
2019-09-02 11:57:06 +00:00
|
|
|
media_player = [
|
|
|
|
{ platform = "mpd";
|
2020-01-23 22:52:39 +00:00
|
|
|
name = "lounge";
|
2019-09-02 11:57:06 +00:00
|
|
|
host = "lounge.mpd.shack";
|
|
|
|
}
|
2020-02-19 13:35:53 +00:00
|
|
|
{ platform = "mpd";
|
|
|
|
name = "kiosk";
|
2021-09-05 20:18:33 +00:00
|
|
|
#host = "lounge.kiosk.shack";
|
|
|
|
host = "kiosk.shack";
|
2020-02-19 13:35:53 +00:00
|
|
|
}
|
2019-09-02 11:57:06 +00:00
|
|
|
];
|
2019-09-05 23:07:20 +00:00
|
|
|
|
2019-09-02 11:57:06 +00:00
|
|
|
camera = [];
|
|
|
|
frontend = { };
|
2019-11-07 08:47:29 +00:00
|
|
|
config = { };
|
2020-12-01 22:20:31 +00:00
|
|
|
sun = {};
|
2019-09-02 11:57:06 +00:00
|
|
|
http = {
|
|
|
|
base_url = "http://hass.shack";
|
|
|
|
use_x_forwarded_for = true;
|
2021-09-05 20:18:33 +00:00
|
|
|
trusted_proxies = [ "127.0.0.1" "::1" ];
|
2019-09-02 11:57:06 +00:00
|
|
|
};
|
2019-11-06 23:25:42 +00:00
|
|
|
#conversation = {};
|
2020-12-01 22:20:31 +00:00
|
|
|
|
|
|
|
history = {};
|
|
|
|
logbook = {};
|
2020-06-17 07:09:53 +00:00
|
|
|
#recorder = {};
|
2020-12-01 22:20:31 +00:00
|
|
|
|
|
|
|
logger.default = "info";
|
|
|
|
|
2019-09-02 11:57:06 +00:00
|
|
|
tts = [
|
2019-11-07 08:47:29 +00:00
|
|
|
{ platform = "google_translate";
|
2020-01-23 22:52:39 +00:00
|
|
|
service_name = "say";
|
2019-09-02 11:57:06 +00:00
|
|
|
language = "de";
|
2020-01-23 22:52:39 +00:00
|
|
|
cache = true;
|
|
|
|
time_memory = 57600;
|
2021-09-05 20:18:33 +00:00
|
|
|
base_url = "http://hass.shack";
|
2019-09-02 11:57:06 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
device_tracker = [];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|