16 lines
360 B
Nix
16 lines
360 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
|
|
];
|
|
}
|