added leiningen and pwgen

This commit is contained in:
see 2022-01-21 18:29:18 +01:00
parent 1defd46c97
commit 3235d490d1
2 changed files with 7 additions and 1 deletions

View file

@ -59,6 +59,7 @@ fun Prov.provisionWorkplace(
aptInstall(BASH_UTILS) aptInstall(BASH_UTILS)
aptInstall(OS_ANALYSIS) aptInstall(OS_ANALYSIS)
aptInstall(ZIP_UTILS) aptInstall(ZIP_UTILS)
aptInstall(PASSWORD_TOOLS)
aptInstall(BROWSER) aptInstall(BROWSER)
aptInstall(EMAIL_CLIENT) aptInstall(EMAIL_CLIENT)
@ -91,6 +92,7 @@ fun Prov.provisionWorkplace(
// IDEs // IDEs
installVSC("python", "clojure") installVSC("python", "clojure")
aptInstall(CLOJURE_TOOLS)
installIntelliJ() installIntelliJ()
installDevOps() installDevOps()

View file

@ -32,4 +32,8 @@ val VPNC = "vpnc network-manager-vpnc network-manager-vpnc-gnome vpnc-scripts"
val JAVA_JDK = "openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk" val JAVA_JDK = "openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk"
val DRAWING_TOOLS = "inkscape dia" val DRAWING_TOOLS = "inkscape dia"
val CLOJURE_TOOLS = "leiningen"
val PASSWORD_TOOLS = "pwgen"