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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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