nixos/tomcat: add extraGroups type (#110486)

This commit is contained in:
Fritz Otlinghaus
2021-01-22 16:22:06 +01:00
committed by GitHub
parent 2b56a69386
commit 0a38f6da4f

View File

@@ -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.";
};