lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

tomcat service: fix webapps default option (#40657)

The old package tomcat.webapps does not exist

authored by

Tristan Helmich and committed by
xeji
1daa7716 ea806634

+2 -2
+2 -2
nixos/modules/services/web-servers/tomcat.nix
··· 109 109 110 110 webapps = mkOption { 111 111 type = types.listOf types.package; 112 - default = [ tomcat.webapps ]; 113 - defaultText = "[ tomcat.webapps ]"; 112 + default = [ tomcat85.webapps ]; 113 + defaultText = "[ tomcat85.webapps ]"; 114 114 description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat"; 115 115 }; 116 116