nixos/acme: fix cert ownership assert for string SupplementaryGroups

This commit is contained in:
ThinkChaos 2024-11-14 19:19:46 -05:00
parent 8540b13b1d
commit b2e7be76ba
No known key found for this signature in database

View File

@ -6,7 +6,7 @@ let
svcGroups = svc:
(lib.optional (svc.serviceConfig ? Group) svc.serviceConfig.Group)
++ (svc.serviceConfig.SupplementaryGroups or [ ]);
++ lib.toList (svc.serviceConfig.SupplementaryGroups or [ ]);
in
{
assertion = builtins.all (svc: