{ pkgs, config, lib, ... }: let unstablePkgs = import { }; in { imports = [ #./home-assistant/chaospott.nix #./home-assistant/mpd.nix #./home-assistant/timer.nix ./home-assistant/kodi.nix ./home-assistant/mqtt.nix ./home-assistant/sonoff.nix ./home-assistant/weather.nix ./home-assistant/workday.nix ./home-assistant/zigbee2mqtt.nix ]; services.homeAssistantConfig = { # turn on to edit GUI # lovelace = {}; homeassistant = { latitude = 51.444847; longitude = 6.967006; elevation = 116; auth_providers = [{ type = "trusted_networks"; trusted_networks = [ config.module.cluster.services.tinc."private".networkSubnet ]; }]; }; prometheus.namespace = "hass"; input_boolean.bed_room_buttons.icon = "mdi:toggle-switch"; automation = let # todo : at night only turn trigger essential groups presents = room_group: present_group: [ { alias = "presents -> turn on ${room_group} lights"; trigger = { platform = "state"; entity_id = "group.${present_group}"; from = "off"; to = "on"; }; action = [ { service = "switch.turn_on"; entity_id = "group.${room_group}"; } { service = "light.turn_on"; entity_id = "group.${room_group}"; } ]; } { alias = "absents -> turn off ${room_group} lights"; trigger = { platform = "state"; entity_id = "group.${present_group}"; from = "on"; to = "off"; }; action = [ { service = "switch.turn_off"; entity_id = "group.${room_group}"; } { service = "light.turn_off"; entity_id = "group.${room_group}"; } ]; } ]; in (presents "kitchen_room" "kitchen_room_present") ++ (presents "kitchen_room_essential" "kitchen_room_essential_present") ++ (presents "living_room" "living_room_present") ++ (presents "living_essential_room" "living_room_essential_present") ++ (presents "floor_room" "floor_room_present") ++ (presents "floor_room_essential" "floor_room_essential_present") ++ (presents "bath_room" "bath_room_present") ++ (presents "bath_room_essential" "bath_room_essential_present") ++ (presents "bed_room" "bed_room_present") ++ (presents "bed_room_essential" "bed_room_essential_present") ++ [ ]; group = let create_room = { name, description }: { "${name}" = { name = description; view = false; entities = [ "group.${name}_essential" ]; }; "${name}_present" = { control = "hidden"; name = "${description} Anwesend"; view = false; entities = [ ]; }; "${name}_essential" = { control = "hidden"; name = "${description} Minimale Beleuchtung"; view = false; entities = [ ]; }; "${name}_essential_present" = { control = "hidden"; name = "${description} Flüchtig Anwesend"; view = false; entities = [ "group.${name}_present" ]; }; }; create_rooms = rooms: lib.foldr (a: b: a // b) { } (map create_room rooms); # rooms # ----- in (create_rooms [ { name = "floor_room"; description = "Flur"; } { name = "bed_room"; description = "Schlafzimmer"; } { name = "living_room"; description = "Wohnzimmer"; } { name = "kitchen_room"; description = "Küche"; } { name = "bath_room"; description = "Klo"; } ]) // { view_rooms = { name = "Räume"; view = true; entities = [ "group.all_lights" "group.floor_room" "group.floor_room_essential_present" "group.bed_room" "group.bed_room_essential_present" "group.living_room" "group.living_room_essential_present" "group.kitchen_room" "group.kitchen_room_essential_present" "group.bath_room" "group.bath_room_essential_present" ]; }; view_bed_room = { name = "Schlafzimmer"; view = true; entities = [ "group.bed_room" "group.bed_room_essential_present" ]; }; view_living_room = { name = "Wohnzimmer"; view = true; entities = [ "group.living_room" "group.living_room_essential_present" ]; }; view_kitchen_room = { name = "Küche"; view = true; entities = [ "group.kitchen_room" "group.kitchen_room_essential_present" ]; }; view_floor_room = { name = "Flur"; view = true; entities = [ "group.floor_room" "group.floor_room_essential_present" ]; }; view_bath_room = { name = "Klo"; view = true; entities = [ "group.bath_room" "group.bath_room_essential_present" ]; }; # overview # -------- all_sensors = { name = "Sensor Overview"; control = "hidden"; }; today = { control = "hidden"; name = "Today"; view = false; }; view_overview = { name = "Übersicht"; view = true; entities = [ "group.today" ]; }; # other stuff # ----------- tv = { name = "TV"; view = false; }; all_lights = { name = "Alle Lampen"; view = false; }; unknown = { control = "hidden"; name = "Not Used"; view = false; entities = [ ]; }; }; script.turn_all_off.sequence = [ ]; script.turn_all_lights_off.sequence = [ ]; }; services.home-assistant = { enable = true; package = unstablePkgs.home-assistant.override { python3 = unstablePkgs.python37; extraPackages = python: [ # todo : check which is still needed python.netdisco python.xmltodict python.mpd2 # for mqtt python.hbmqtt python.paho-mqtt # needed for platform workday #(python.buildPythonPackage rec { # pname = "holidays"; # version = "0.9.10"; # src = python.fetchPypi { # inherit pname version; # sha256 = # "9f06d143eb708e8732230260636938f2f57114e94defd8fa2082408e0d422d6f"; # }; # doCheck = false; # buildInputs = [ pkgs.dateutils ]; # propagatedBuildInputs = [ python."python-dateutil" python."six" ]; # meta = with pkgs.stdenv.lib; { # homepage = "https://github.com/dr-prodigy/python-holidays"; # license = licenses.mit; # description = "Generate and work with holidays in Python"; # maintainers = with maintainers; [ mrVanDalo ]; # }; #}) ]; }; }; # host nginx setup services.nginx = { enable = true; recommendedProxySettings = true; virtualHosts = { "iot.pepe.private" = { serverAliases = [ "hass.pepe.private" "home.pepe.private" ]; locations."/" = { proxyPass = "http://pepe.private:8123"; }; }; }; }; }