Re-enable latex
This commit is contained in:
parent
ce71043b82
commit
6ca97dc69b
3 changed files with 17 additions and 20 deletions
|
|
@ -73,7 +73,7 @@
|
|||
# ../../modules/hm/development/go.nix
|
||||
# ../../modules/hm/development/javascript.nix
|
||||
../../modules/hm/development/kubernetes.nix
|
||||
# ../../modules/hm/development/latex.nix
|
||||
../../modules/hm/development/latex.nix
|
||||
../../modules/hm/development/markdown.nix
|
||||
../../modules/hm/development/nix.nix
|
||||
../../modules/hm/development/python.nix
|
||||
|
|
|
|||
|
|
@ -75,11 +75,11 @@
|
|||
# ../../modules/hm/development/database.nix
|
||||
# ../../modules/hm/development/go.nix
|
||||
# ../../modules/hm/development/javascript.nix
|
||||
# ../../modules/hm/development/latex.nix
|
||||
# ../../modules/hm/development/rust.nix
|
||||
../../modules/hm/development/data.nix
|
||||
../../modules/hm/development/docker.nix
|
||||
../../modules/hm/development/kubernetes.nix
|
||||
../../modules/hm/development/latex.nix
|
||||
../../modules/hm/development/markdown.nix
|
||||
../../modules/hm/development/nix.nix
|
||||
../../modules/hm/development/python.nix
|
||||
|
|
|
|||
|
|
@ -4,24 +4,21 @@
|
|||
, ...
|
||||
}:
|
||||
{
|
||||
home.packages =
|
||||
[
|
||||
pkgs.bibtool
|
||||
pkgs.texlive.combined.scheme-full
|
||||
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
|
||||
;
|
||||
}
|
||||
);
|
||||
++ 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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue