Replace builtins.toString with toString

This commit is contained in:
SebastianStork 2025-10-09 21:35:41 +02:00
parent c18caea0de
commit c3cfcf1b61
15 changed files with 24 additions and 24 deletions

View file

@ -41,7 +41,7 @@ in
inherit domain;
})
)
|> lib.groupBy (entry: builtins.toString entry.domain)
|> lib.groupBy (entry: toString entry.domain)
|> lib.mapAttrs (_: values: values |> lib.map (value: value.file))
|> lib.filterAttrs (_: files: lib.length files > 1);

View file

@ -35,7 +35,7 @@ in
inherit port;
})
)
|> lib.groupBy (entry: builtins.toString entry.port)
|> lib.groupBy (entry: toString entry.port)
|> lib.mapAttrs (_: values: values |> lib.map (value: value.file))
|> lib.filterAttrs (_: files: lib.length files > 1);