glane: Fix titles

This commit is contained in:
SebastianStork 2026-03-09 23:14:19 +01:00
parent 5cf56036d7
commit e15485a60e
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q

View file

@ -44,7 +44,19 @@ in
type = "monitor"; type = "monitor";
cache = "1m"; cache = "1m";
title = "Services - ${hostName}"; title = "Services - ${hostName}";
sites = services; sites =
services
|> lib.map (
{
name,
url,
icon,
}:
{
title = name;
inherit url icon;
}
);
} }
); );
}; };