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