Files
nixos-config/modules/user/packages/tex.nix

20 lines
314 B
Nix
Raw Normal View History

2025-06-08 02:56:33 +03:00
{ pkgs, ... }: {
home.packages = with pkgs; [
texstudio
(texlive.combine {
inherit (texlive)
babel-russian
cm-super
cyrillic
titlesec
hyperref
geometry
caption
float
xcolor
listings
scheme-basic;
})
];
}