pkgs: add texstudio

This commit is contained in:
2025-06-08 02:56:33 +03:00
parent b96b2986f0
commit 1f034a5ebc
4 changed files with 23 additions and 2 deletions

View File

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