summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/deployment/bureautomation/hass.nix
blob: b1eba22b4a267630a8e0456265a56503f46ecf3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{ pkgs, lib, ... }:
let
  tasmota_plug = name: topic:
  { platform = "mqtt";
    inherit name;
    state_topic = "/bam/${topic}/stat/POWER1";
    command_topic = "/bam/${topic}/cmnd/POWER1";
    availability_topic = "/bam/${topic}/tele/LWT";
    payload_on= "ON";
    payload_off= "OFF";
    payload_available= "Online";
    payload_not_available= "Offline";
  };
  tasmota_stecki = name: topic:
    ( tasmota_plug name topic) // 
    { state_topic = "/bam/${topic}/stat/POWER";
      command_topic = "/bam/${topic}/cmnd/POWER";
  };
  espeasy_dht22 = name: [
  { platform = "mqtt";
    name = "${name} DHT22 Temperature";
    device_class = "temperature";
    state_topic = "/bam/${name}/dht22/Temperature";
    availability_topic = "/bam/${name}/tele/LWT";
    payload_available = "Online";
    payload_not_available = "Offline";
  }
  { platform = "mqtt";
    device_class = "humidity";
    name = "${name} DHT22 Humidity";
    state_topic = "/bam/${name}/dht22/Humidity";
    availability_topic = "/bam/${name}/tele/LWT";
    payload_available = "Online";
    payload_not_available = "Offline";
  }];
  espeasy_ds18 = name:
  { platform = "mqtt";
    name = "${name} DS18 Temperature";
    state_topic = "/bam/${name}/ds18/Temperature";
    availability_topic = "/bam/${name}/tele/LWT";
    payload_available = "Online";
    payload_not_available = "Offline";
  };
in {
  networking.firewall.allowedTCPPorts = [ 8123 ];
  nixpkgs.config.permittedInsecurePackages = [
    "homeassistant-0.65.5"
  ];

  services.home-assistant = {
    enable = true;
    config = {
      homeassistant = {
        name = "Bureautomation";
        time_zone = "Europe/Berlin";
      };

      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;
        };
      };
      switch = [
        (tasmota_plug "Bauarbeiterlampe" "plug")
        (tasmota_plug "Blitzdings" "plug2")
        (tasmota_stecki "Fernseher" "fernseher")
        (tasmota_plug "Pluggy" "plug4")
      ];
      binary_sensor = [
        { platform = "mqtt";
          device_class = "motion";
          name = "Motion";
          state_topic = "/bam/easy2/movement/Switch";
          payload_on = "1";
          payload_off = "0";
          availability_topic = "/bam/easy2/tele/LWT";
          payload_available = "Online";
          payload_not_available = "Offline";
        }
      ];
      sensor =
          (espeasy_dht22 "easy1") ++
          (espeasy_dht22 "easy2") ++
        [ (espeasy_ds18 "easy3" )
          { platform = "luftdaten";
            name = "Ditzingen";
            sensorid = "5341";
            monitored_conditions = [ "P1" "P2" ];
          }
          { platform = "influxdb";
            queries = [
              { name = "mean value of feinstaub P1";
                where = '' "node" = 'esp8266-1355142' '';
                measurement = "feinstaub";
                database = "telegraf";
                field = "P1";
              }
              { name = "mean value of feinstaub P2";
                where = '' "node" = 'esp8266-1355142' '';
                measurement = "feinstaub";
                database = "telegraf";
                field = "P2";
              }
            ];
          }
        ];
      frontend = { };
      http = { };
      feedreader.urls = [ "http://www.heise.de/security/rss/news-atom.xml" ];
      automation = [
        { alias = "Turn on Fernseher on movement";
          trigger = {
            platform = "state";
            entity_id = "binary_sensor.motion";
            to = "on";
          };
          action = {
            service= "homeassistant.turn_on";
            entity_id= "switch.fernseher";
          };
        }
        { alias = "Turn off Fernseher 10 minutes after last movement";
          trigger = {
            platform = "state";
            entity_id = "binary_sensor.motion";
            to = "off";
            for.minutes = 10;
          };
          action = {
            service= "homeassistant.turn_off";
            entity_id= "switch.fernseher";
          };
        }
      ];
    };
  };
}
[cgit] Unable to lock slot /tmp/cgit/1a100000.lock: No such file or directory (2)