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 ''; };