tomcat service: fix webapps default option (#40657)

The old package tomcat.webapps does not exist
This commit is contained in:
Tristan Helmich 2018-06-10 20:10:01 +02:00 committed by xeji
parent ea80663493
commit 1daa77160e

@ -109,8 +109,8 @@ in
webapps = mkOption {
type = types.listOf types.package;
default = [ tomcat.webapps ];
defaultText = "[ tomcat.webapps ]";
default = [ tomcat85.webapps ];
defaultText = "[ tomcat85.webapps ]";
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";
};