16 lines
242 B
Nix
16 lines
242 B
Nix
{ config, ... }: {
|
|
services.homeAssistantConfig = {
|
|
|
|
sensor = [
|
|
# Weather prediction
|
|
{
|
|
platform = "zamg";
|
|
name = "weather";
|
|
}
|
|
];
|
|
|
|
group = { overview.entities = [ "sensor.weather" ]; };
|
|
|
|
};
|
|
|
|
}
|