refactor: normalize usage of lib and builtins namespaces

This commit is contained in:
SebastianStork 2025-07-22 22:58:18 +02:00
parent 043a996319
commit 062fd5de0b
17 changed files with 24 additions and 24 deletions

View file

@ -33,12 +33,12 @@ in
|> lib.concatLists
|> lib.concatMap (
entry:
map (domain: {
lib.map (domain: {
file = entry.file;
inherit domain;
}) entry.value
)
|> lib.groupBy (entry: toString entry.domain)
|> lib.groupBy (entry: builtins.toString entry.domain)
|> lib.filterAttrs (domain: entries: lib.length entries > 1);
errorMessage =