home-assistant: add weather cards
Some checks failed
Check flake / build-amd64-linux (push) Failing after 3m3s

This commit is contained in:
Jordan Holt 2025-01-27 00:23:24 +00:00
parent 8d91d74261
commit 631ab0144f
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -314,10 +314,18 @@ in
url = "/local/nixos-lovelace-modules/sankey-chart.js"; url = "/local/nixos-lovelace-modules/sankey-chart.js";
type = "module"; type = "module";
} }
{
url = "/local/nixos-lovelace-modules/simple-weather-card-bundle.js";
type = "module";
}
{ {
url = "/local/nixos-lovelace-modules/state-switch.js"; url = "/local/nixos-lovelace-modules/state-switch.js";
type = "module"; type = "module";
} }
{
url = "/local/nixos-lovelace-modules/weather-radar-card.js";
type = "module";
}
]; ];
customLovelaceModules = customLovelaceModules =
@ -335,7 +343,9 @@ in
lovelace-auto-entities lovelace-auto-entities
lovelace-layout-card lovelace-layout-card
lovelace-my-cards lovelace-my-cards
lovelace-simple-weather-card
lovelace-state-switch lovelace-state-switch
lovelace-weather-radar-card
]); ]);
}; };