stockholm/lass/2configs/hass/rooms/bett.nix

40 lines
853 B
Nix
Raw Normal View History

2020-04-21 12:21:17 +00:00
{ lib, ... }:
2020-05-16 15:21:34 +00:00
with import ../lib.nix { inherit lib; };
2020-04-21 12:21:17 +00:00
{
2020-05-16 15:21:34 +00:00
lass.hass.config = lib.mkMerge [
(lightswitch switches.dimmer.bett lights.bett)
2020-04-21 12:21:17 +00:00
];
2020-09-27 13:36:01 +00:00
lass.hass.love = {
resources = [{
url = "https://raw.githubusercontent.com/ljmerza/light-entity-card/master/dist/light-entity-card.js.map";
type = "js";
}];
views = [{
title = "bett";
cards = [
{
type = "markdown";
title = "hello world";
content = "This is just a test";
}
{
type = "light";
entity = "light.${lights.bett}";
}
{
type = "custom:light-entity-card";
entity = "light.${lights.bett}";
}
{
type = "history-graph";
entities = [
"light.${lights.bett}"
];
}
];
}];
};
2020-04-21 12:21:17 +00:00
}