meta/sites: Rename from meta.services

This commit is contained in:
SebastianStork 2026-03-10 15:36:37 +01:00
parent 1c80dbef8b
commit 19548f8486
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
23 changed files with 24 additions and 24 deletions

View file

@ -18,7 +18,7 @@ let
applicationSites =
hosts
|> lib.concatMap (host: host.config.custom.meta.services |> lib.attrValues)
|> lib.concatMap (host: host.config.custom.meta.sites |> lib.attrValues)
|> lib.filter (service: !lib.elem service.title observabilityTitles)
|> lib.groupBy (
service:
@ -46,7 +46,7 @@ let
cache = "1m";
title = host.config.networking.hostName;
sites =
host.config.custom.meta.services
host.config.custom.meta.sites
|> lib.attrValues
|> lib.filter (service: lib.elem service.title observabilityTitles);
})