From 1daa77160e92b372503c29e22bb82b1c263445ea Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Sun, 10 Jun 2018 20:10:01 +0200 Subject: [PATCH] tomcat service: fix webapps default option (#40657) The old package tomcat.webapps does not exist --- nixos/modules/services/web-servers/tomcat.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/web-servers/tomcat.nix b/nixos/modules/services/web-servers/tomcat.nix index aa94e0e976c9..5abbbf090598 100644 --- a/nixos/modules/services/web-servers/tomcat.nix +++ b/nixos/modules/services/web-servers/tomcat.nix @@ -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"; };