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

33 lines
549 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
2025-09-19 00:57:03 +03:00
hyphen-russian
hyphenat
2025-06-08 02:56:33 +03:00
titlesec
caption
float
xcolor
listings
2025-09-19 00:57:03 +03:00
pagecolor
moresize
raleway
fontawesome5
luatexbase
fontspec
ragged2e
enumitem
extsizes
multirow
varwidth
paracol
anyfontsize
2025-06-08 02:56:33 +03:00
scheme-basic;
})
];
}