summaryrefslogtreecommitdiffstats
path: root/programs/texlive.nix
blob: 02bc236be6efdadb3a61dbd5cf85f06e6179d05e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:
let
    tex = (pkgs.texlive.combine {
        inherit (pkgs.texlive) scheme-basic
    });
in
{
    home.packages = with pkgs; [
        tex
    ]
}