texlive: Use full version

Many packages that I often use are only part of texlive-full.
restic-rest-server
Simon Bruder 2020-08-26 08:53:25 +02:00
parent f98781d03d
commit 3e7431e9e9
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 1 additions and 12 deletions

View File

@ -1,18 +1,7 @@
# 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;
}
)
texlive.combined.scheme-full
];
}