tex: move to own modules

This commit is contained in:
Rouven Seifert 2023-11-25 23:25:38 +01:00
parent 2e8e3ada22
commit 61f3684c96
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 9 additions and 6 deletions

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = [
(pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-full;
})
];
}