summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-09-27 06:38:24 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-09-27 06:38:24 +0200
commite72ee7e5e0a2739452031ee992605b274b5e17fa (patch)
tree601946e7ef3b280ab51a8fb328c2fad56d172b9a
parentAdd extra xmonad dependencies. (diff)
downloadprofiles-e72ee7e5e0a2739452031ee992605b274b5e17fa.tar.gz
profiles-e72ee7e5e0a2739452031ee992605b274b5e17fa.tar.xz
Tex: more default packages.
-rw-r--r--manifests/tex.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/tex.pp b/manifests/tex.pp
index 2f4c9b1..310ba53 100644
--- a/manifests/tex.pp
+++ b/manifests/tex.pp
@@ -1,8 +1,18 @@
+# @summary Install LaTeX on system.
+#
+# Package list is currently Archlinux specific.
class profiles::tex {
ensure_packages([
'texlive-basic',
+ 'texlive-binextra',
'texlive-fontsextra',
+ 'texlive-fontsrecommmended',
'texlive-latexextra',
'texlive-pictures',
+
+ # Can be limited to texlive-langenglish and texlive-langeuropean
+ 'texlive-lang',
+
+ 'ghostscript',
])
}