nixos-config/configs/pepe/home-assistant/weather.nix

17 lines
242 B
Nix
Raw Normal View History

2020-04-12 13:36:15 +02:00
{ config, ... }: {
services.homeAssistantConfig = {
sensor = [
# Weather prediction
{
platform = "zamg";
name = "weather";
}
];
group = { overview.entities = [ "sensor.weather" ]; };
};
}