13 lines
193 B
Nix
13 lines
193 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
(texLiveAggregationFun { paths = [
|
|
texLive
|
|
texLiveExtra
|
|
texLiveCMSuper
|
|
texLiveModerncv
|
|
];})
|
|
];
|
|
}
|