From 1036c49e9e3c3ff311a713cccf0054c8c16a9857 Mon Sep 17 00:00:00 2001 From: "quentin@aristote.fr" Date: Sat, 30 Sep 2023 21:25:03 +0200 Subject: format --- html/languages/default.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'html/languages') diff --git a/html/languages/default.nix b/html/languages/default.nix index f7c49f0..06df694 100644 --- a/html/languages/default.nix +++ b/html/languages/default.nix @@ -1,13 +1,14 @@ -{ html, data, ... }: - -let languages = data.languages; +{ + html, + data, + ... +}: let + languages = data.languages; in { title = "Languages"; priority = 40; - body = with html; - (for languages (language: - with language; - "${ - lib.concatStrings (for icon.codepoints (codepoint: "&x${codepoint}")) - } ${name} (${proficiency})")); + body = with html; (for languages (language: + with language; "${ + lib.concatStrings (for icon.codepoints (codepoint: "&x${codepoint}")) + } ${name} (${proficiency})")); } -- cgit v1.2.3