Files
nixos/hosts/fw/modules/home-assistant/enocean.nix

27 lines
525 B
Nix

{
services.home-assistant.config = {
"binary_sensor pc_0" = [
{
platform = "enocean";
id = [ 254 235 105 198 ];
name = "enocean_switch_pc";
}
];
"binary_sensor bed_1" = [
{
platform = "enocean";
id = [ 254 207 162 105 ];
name = "enocean_switch_bed_1";
}
];
sensor = [
{
name = "Bathroom HT";
platform = "enocean";
id = [ 5 41 146 251 ];
device_class = "temperature";
}
];
};
}