Files
nixos-config/modules/user/packages/tex.nix
2025-06-09 16:28:02 +03:00

20 lines
314 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
texstudio
(texlive.combine {
inherit (texlive)
babel-russian
cm-super
cyrillic
titlesec
hyperref
geometry
caption
float
xcolor
listings
scheme-basic;
})
];
}