mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
nixos/acme: fix cert ownership assert for string SupplementaryGroups
This commit is contained in:
parent
8540b13b1d
commit
b2e7be76ba
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue