nixos-config/modules/texlive.nix

19 lines
433 B
Nix

# This module installs the medium set of texlive.
# If more packages are needed, they should be installed locally by adding
# something like the follwing to `shell.nix`
#
# (texlive.combine { inherit (texlive) scheme-medium wrapfig; })
#
# TODO: include packages I often use
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(
texlive.combine {
inherit (texlive) scheme-medium;
}
)
];
}