add krakow weather to glance

This commit is contained in:
2025-09-16 20:38:42 +02:00
parent d09d53690f
commit e772e68c16

View File

@@ -125,20 +125,20 @@
} }
{ {
size = "small"; size = "small";
widgets = [ widgets =
{ let
type = "weather"; locations = [
location = "Grenoble, France"; "Krakow, Poland"
units = "metric"; "Grenoble, France"
hour-format = "24h"; "Saint-Michel-de-Maurienne, France"
}
{
type = "weather";
location = "Saint-Michel-de-Maurienne, France";
units = "metric";
hour-format = "24h";
}
]; ];
in
builtins.map (location: {
type = "weather";
inherit location;
units = "metric";
hour-format = "24h";
}) locations;
} }
]; ];
} }