mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
nixos/acme: fix cert ownership assert for string SupplementaryGroups
This commit is contained in:
parent
8540b13b1d
commit
b2e7be76ba
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user