summaryrefslogtreecommitdiff
path: root/html/languages
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2023-09-30 21:25:03 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2023-09-30 21:25:03 +0200
commit1036c49e9e3c3ff311a713cccf0054c8c16a9857 (patch)
tree8a9495eb0181cef35f690879267120bc3de3defe /html/languages
parentadd6bcd3c1984068e7122fa07a8f3e35ebaf58a9 (diff)
format
Diffstat (limited to 'html/languages')
-rw-r--r--html/languages/default.nix19
1 files changed, 10 insertions, 9 deletions
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})"));
}