From 0a38f6da4fbf85cb12ecdaad31fe3297887e1de2 Mon Sep 17 00:00:00 2001 From: Fritz Otlinghaus Date: Fri, 22 Jan 2021 16:22:06 +0100 Subject: [PATCH] nixos/tomcat: add extraGroups type (#110486) --- nixos/modules/services/web-servers/tomcat.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/web-servers/tomcat.nix b/nixos/modules/services/web-servers/tomcat.nix index 6d12925829f7..13fe98402c60 100644 --- a/nixos/modules/services/web-servers/tomcat.nix +++ b/nixos/modules/services/web-servers/tomcat.nix @@ -74,6 +74,7 @@ in extraGroups = mkOption { default = []; + type = types.listOf types.str; example = [ "users" ]; description = "Defines extra groups to which the tomcat user belongs."; };