nix-dotfiles/hm_modules/development/latex.nix
2023-01-19 20:01:19 +01:00

13 lines
366 B
Nix

{ pkgs, config, lib, ... }: {
home.packages = with pkgs;
[ bibtool tex2nix texlive.combined.scheme-medium ]
++ lib.optionals config.programs.helix.enable [ texlab ]
++ lib.optionals config.programs.kakoune.enable [
texlab
aspell
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
aspellDicts.it
];
}