summary refs log tree commit diff
path: root/nixos/modules/services/web-servers
diff options
context:
space:
mode:
authorTristan Helmich <fadenb@users.noreply.github.com>2018-06-10 20:10:01 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-10 20:10:01 +0200
commit1daa77160e92b372503c29e22bb82b1c263445ea (patch)
tree9cf0db677e83147b56e5e93073d7b48f54029fe6 /nixos/modules/services/web-servers
parentea806634934eca67db796ccd0887b2d37a9a5b9a (diff)
downloadnixlib-1daa77160e92b372503c29e22bb82b1c263445ea.tar
nixlib-1daa77160e92b372503c29e22bb82b1c263445ea.tar.gz
nixlib-1daa77160e92b372503c29e22bb82b1c263445ea.tar.bz2
nixlib-1daa77160e92b372503c29e22bb82b1c263445ea.tar.lz
nixlib-1daa77160e92b372503c29e22bb82b1c263445ea.tar.xz
nixlib-1daa77160e92b372503c29e22bb82b1c263445ea.tar.zst
nixlib-1daa77160e92b372503c29e22bb82b1c263445ea.zip
tomcat service: fix webapps default option (#40657)
The old package tomcat.webapps does not exist
Diffstat (limited to 'nixos/modules/services/web-servers')
-rw-r--r--nixos/modules/services/web-servers/tomcat.nix4
1 files 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";
       };