snowflake/hosts/yuki/services/homepage/widgets.nix

31 lines
570 B
Nix
Raw Normal View History

2024-03-18 14:38:32 -04:00
_: {
services.homepage-dashboard.widgets = [
{
greeting = {
text_size = "l";
text = "";
};
}
{
datetime = {
text_size = "l";
format = {
timeStyle = "short";
dateStyle = "short";
hourCycle = "h23";
};
};
}
{
openweathermap = {
label = "New York";
latitude = "40.730610";
longitude = "-73.935242";
units = "metric";
provider = "openweathermap";
cache = 5;
};
}
];
}