add texlive.nix for installing full latex suite

This commit is contained in:
lassulus 2015-05-03 12:01:38 +02:00 committed by tv
parent 99fd674deb
commit 9fc62f557a

7
modules/lass/texlive.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(pkgs.texLiveAggregationFun { paths = [ pkgs.texLive pkgs.texLiveFull ]; })
];
}