Compare commits

..

No commits in common. "ebe93d293fc682ed6edc9e6d6be88ba363196372" and "b522d357d3277c7c8a19649cbd57ba23a1d21673" have entirely different histories.

3 changed files with 7 additions and 11 deletions

View file

@ -373,10 +373,10 @@ genPdfAction _getPost out = do
, srcFile
, "--resource-path=."
, "-H", "engine" </> "deeplist.tex"
-- , "-V", "mainfont:CMU Serif"
-- , "-V", "mainfontoptions:Renderer=OpenType, Mapping=tex-text, ItalicFeatures={Alternate = 0}, Ligatures={Common,Rare,Historic,Contextual},Contextuals=Inner,Alternate=1"
-- , "-V", "monofont:Menlo"
-- , "-V", "monofontoptions:Scale=0.7"
, "-V", "mainfont:CMU Serif"
, "-V", "mainfontoptions:Renderer=OpenType, Mapping=tex-text, ItalicFeatures={Alternate = 0}, Ligatures={Common,Rare,Historic,Contextual},Contextuals=Inner,Alternate=1"
, "-V", "monofont:Menlo"
, "-V", "monofontoptions:Scale=0.7"
, "-o", out ]

View file

@ -2,7 +2,7 @@
cd "$(git rev-parse --show-toplevel)" || exit 1
if (($#>0)); then
docker run --rm -v $PWD:/home/her.esy.fun --expose=3000 --name her.esy.fun -it her.esy.fun /bin/sh -c "cd /home/her.esy.fun && nix-shell --run '$*'"
docker run --rm -v $PWD:/home/her.esy.fun --name her.esy.fun -it her.esy.fun /bin/sh -c "cd /home/her.esy.fun && nix-shell --run $@"
else
docker run --rm -v $PWD:/home/her.esy.fun --expose=3000 --name her.esy.fun -it her.esy.fun
docker run --rm -v $PWD:/home/her.esy.fun --name her.esy.fun -it her.esy.fun
fi

View file

@ -29,8 +29,7 @@ pkgs.mkShell {
perlPackages.URI
minify
imagemagick
texlive.combined.scheme-full # https://nixos.wiki/wiki/TexLive
cm_unicode
texlive.combined.scheme-medium # https://nixos.wiki/wiki/TexLive
# dev env
# niv
git
@ -40,7 +39,4 @@ pkgs.mkShell {
ripgrep
nodePackages.http-server
];
shellHook = ''
export FONTCONFIG_FILE=${pkgs.fontconfig.out}/etc/fonts/fonts.conf
'';
}