Files
nixos/hosts/fw/modules/home-assistant/scenes/date.nix

28 lines
601 B
Nix

{ pkgs, ... }:
{
services.home-assistant.config = {
scene = [
{
name = "Date Night";
entities = {
"light.livingroom_showcase" = {
state = "on";
brightness = 255;
rgb_color = [255 110 84];
};
"light.bar_led" = {
state = "on";
brightness = 255;
rgb_color = [255 110 84];
};
"light.shapes_1e51" = {
state = "on";
brightness = 124;
effect = "Date Night";
};
};
}
];
};
}