From df40831cad07c4b5ddfa75d05eba749e8e49367b Mon Sep 17 00:00:00 2001 From: aristote Date: Mon, 29 Dec 2025 21:11:15 +0100 Subject: add research output section --- src/sections.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/sections.nix') diff --git a/src/sections.nix b/src/sections.nix index 1c5fbd4..fc749d7 100644 --- a/src/sections.nix +++ b/src/sections.nix @@ -14,7 +14,8 @@ in builtins.map makeSection [ ./experience ./education + ./research ./service ./languages - ./research + ./bibliography ] -- cgit v1.2.3 From f4c78d6dd3b05d4adeeb0cb7a0d6fd4a0bd07cdf Mon Sep 17 00:00:00 2001 From: aristote Date: Wed, 31 Dec 2025 12:23:03 +0100 Subject: sections: remove priority system --- src/sections.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'src/sections.nix') diff --git a/src/sections.nix b/src/sections.nix index fc749d7..aa2c527 100644 --- a/src/sections.nix +++ b/src/sections.nix @@ -5,8 +5,8 @@ }: let sectionTemplate = section: { - inherit (section) title priority; - extraHeader = if section ? extraHeader then section.extraHeader else ""; + inherit (section) title; + extraHeader = section.extraHeader or ""; content = latex.section section.title section.content; }; makeSection = path: sectionTemplate (make path { }); @@ -17,5 +17,13 @@ builtins.map makeSection [ ./research ./service ./languages - ./bibliography +] +++ [ + { + extraHeader = ""; + content = '' + \newpage + ''; + } + (makeSection ./bibliography) ] -- cgit v1.2.3