8 lines
145 B
Nix
8 lines
145 B
Nix
|
{ pkgs, config, ... }: {
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# LaTeX and tlmgr
|
||
|
texlive.combined.scheme-small
|
||
|
];
|
||
|
}
|