summaryrefslogtreecommitdiff
path: root/html/languages/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'html/languages/default.nix')
-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})"));
}