nix-dotfiles/hm_modules/development/latex.nix
2023-02-09 23:21:28 +01:00

13 lines
358 B
Nix

{ pkgs, config, lib, ... }: {
home.packages = with pkgs;
[ bibtool 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
];
}