Re-enable latex

This commit is contained in:
Filippo Berto 2025-02-24 11:55:17 +01:00
parent ce71043b82
commit 6ca97dc69b
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
3 changed files with 17 additions and 20 deletions

View file

@ -4,24 +4,21 @@
, ...
}:
{
home.packages =
[
pkgs.bibtool
pkgs.texlive.combined.scheme-full
pkgs.zathura
]
++ lib.optionals config.programs.helix.enable [ pkgs.texlab ]
++ lib.optionals config.programs.kakoune.enable (
builtins.attrValues {
inherit (pkgs) texlab aspell;
inherit (pkgs.aspellDicts)
en
en-computers
en-science
it
;
}
);
home.packages = [
# pkgs.bibtool
# pkgs.texlive.combined.scheme-full
pkgs.zathura
]
++ lib.optionals config.programs.helix.enable [
# pkgs.texlab
]
++ lib.optionals config.programs.kakoune.enable [
# pkgs.texlab
# pkgs.aspellDicts.en
# pkgs.aspellDicts.en-computers
# pkgs.aspellDicts.en-science
# pkgs.aspellDicts.it
];
home.file.".latexmkrc".text = ''
$pdf_previewer = 'zathura %O %S';