Files
nixos-config/modules/user/packages/tex.nix
T
2025-07-18 16:40:42 +03:00

20 lines
314 B
Nix
Executable File

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