nixos/molly-brown: fix description of certPath

`allowKeysForGroup` is no longer available so this drops

```
security.acme.certs."example.com".allowKeysForGroup = true;
```

line. `SupplementaryGroups` should be enough for
allowing access to certificates.
This commit is contained in:
Richard Marko 2021-02-12 09:12:30 +01:00 committed by Raphael Megzari
parent 29158fc0ac
commit 7423afb5e4

View file

@ -41,7 +41,6 @@ in {
As an example:
<programlisting>
security.acme.certs."example.com".allowKeysForGroup = true;
systemd.services.molly-brown.serviceConfig.SupplementaryGroups =
[ config.security.acme.certs."example.com".group ];
</programlisting>