From 518779dfae84c92e8eaf66d4c535835c2a293ebf Mon Sep 17 00:00:00 2001 From: Thormas <79534558+Thormas@users.noreply.gitea.cloud.thormas.fr> Date: Thu, 28 May 2026 20:58:56 +0200 Subject: [PATCH] fix: roboto font in devenv --- resume/devenv.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/resume/devenv.nix b/resume/devenv.nix index 28933cd..70b1de6 100644 --- a/resume/devenv.nix +++ b/resume/devenv.nix @@ -13,6 +13,7 @@ # https://devenv.sh/packages/ packages = [ pkgs.source-sans + pkgs.roboto pkgs.font-awesome ]; @@ -22,6 +23,7 @@ fontPaths = [ "${pkgs.source-sans}/share/fonts/opentype" "${pkgs.font-awesome}/share/fonts" + "${pkgs.roboto}/share/fonts/truetype" ]; lsp.enable = false; }; @@ -34,11 +36,11 @@ # https://devenv.sh/scripts/ scripts = { - cv-watch.exec = '' - typst watch cv.typ + cv-fr-watch.exec = '' + typst watch cv.typ --input profile=fr ''; - cv-build.exec = '' - typst compile cv.typ + cv-fr-build.exec = '' + typst compile cv.typ --input profile=fr ''; };