nixos-config/users/rouven/modules/tex/default.nix

9 lines
121 B
Nix
Raw Normal View History

2023-11-25 23:25:38 +01:00
{ pkgs, ... }:
{
home.packages = [
(pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-full;
})
];
}