Merge pull request #44371 from pvgoran/tomcat-webapps-listOfPaths

nixos/tomcat: allow non-package paths in services.tomcat.webapps

Changed files
+1 -1
nixos
modules
services
web-servers
+1 -1
nixos/modules/services/web-servers/tomcat.nix
···
};
webapps = mkOption {
-
type = types.listOf types.package;
default = [ tomcat.webapps ];
defaultText = "[ pkgs.tomcat85.webapps ]";
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";
···
};
webapps = mkOption {
+
type = types.listOf types.path;
default = [ tomcat.webapps ];
defaultText = "[ pkgs.tomcat85.webapps ]";
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";