fix: roboto font in devenv

This commit is contained in:
2026-05-28 20:58:56 +02:00
parent 569f3a0cd2
commit 518779dfae

View File

@ -13,6 +13,7 @@
# https://devenv.sh/packages/ # https://devenv.sh/packages/
packages = [ packages = [
pkgs.source-sans pkgs.source-sans
pkgs.roboto
pkgs.font-awesome pkgs.font-awesome
]; ];
@ -22,6 +23,7 @@
fontPaths = [ fontPaths = [
"${pkgs.source-sans}/share/fonts/opentype" "${pkgs.source-sans}/share/fonts/opentype"
"${pkgs.font-awesome}/share/fonts" "${pkgs.font-awesome}/share/fonts"
"${pkgs.roboto}/share/fonts/truetype"
]; ];
lsp.enable = false; lsp.enable = false;
}; };
@ -34,11 +36,11 @@
# https://devenv.sh/scripts/ # https://devenv.sh/scripts/
scripts = { scripts = {
cv-watch.exec = '' cv-fr-watch.exec = ''
typst watch cv.typ typst watch cv.typ --input profile=fr
''; '';
cv-build.exec = '' cv-fr-build.exec = ''
typst compile cv.typ typst compile cv.typ --input profile=fr
''; '';
}; };