mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 17:49:07 +01:00
glane: Fix titles
This commit is contained in:
parent
5cf56036d7
commit
e15485a60e
1 changed files with 13 additions and 1 deletions
|
|
@ -44,7 +44,19 @@ in
|
|||
type = "monitor";
|
||||
cache = "1m";
|
||||
title = "Services - ${hostName}";
|
||||
sites = services;
|
||||
sites =
|
||||
services
|
||||
|> lib.map (
|
||||
{
|
||||
name,
|
||||
url,
|
||||
icon,
|
||||
}:
|
||||
{
|
||||
title = name;
|
||||
inherit url icon;
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue