diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-12-06 12:15:51 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-12-06 12:15:51 +0100 |
| commit | 744c184ae454326c90b6f75faa37455d3299d3d9 (patch) | |
| tree | a4cc04fedaf70c2c174ebbb4c6d96e5007d18759 /modules/latex.nix | |
| parent | 789371a10a0fb691add194c3112e4d15902915c8 (diff) | |
remove quoting around nix paths cast to strings
Diffstat (limited to 'modules/latex.nix')
| -rw-r--r-- | modules/latex.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/latex.nix b/modules/latex.nix index 0c06ec7..16f0017 100644 --- a/modules/latex.nix +++ b/modules/latex.nix @@ -11,7 +11,7 @@ let else "-pdf-") (optionalString cfg.minted.enable "-shell-escape") - ] ++ (map (filename: ''-r "${filename}"'') cfg.latexmk.rc) + ] ++ (map (filename: "-r ${filename}") cfg.latexmk.rc) ++ cfg.latexmk.extraFlags); latexBuildInput = cfg.texlive.combine ((cfg.packages cfg.texlive) // (optionalAttrs cfg.latexmk.enable { inherit (cfg.texlive) latexmk; }) |
