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

nixos/tomcat: allow non-package paths in services.tomcat.webapps
This commit is contained in:
Silvan Mosberger 2018-08-02 23:32:33 +02:00 committed by GitHub
commit 150f4fe9c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,7 +108,7 @@ in
};
webapps = mkOption {
type = types.listOf types.package;
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";