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