From 7423afb5e46a685b7804327d8b31ef723cadf26b Mon Sep 17 00:00:00 2001 From: Richard Marko Date: Fri, 12 Feb 2021 09:12:30 +0100 Subject: [PATCH] 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. --- nixos/modules/services/web-servers/molly-brown.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/web-servers/molly-brown.nix b/nixos/modules/services/web-servers/molly-brown.nix index e0587f3b471..58db9b9beda 100644 --- a/nixos/modules/services/web-servers/molly-brown.nix +++ b/nixos/modules/services/web-servers/molly-brown.nix @@ -41,7 +41,6 @@ in { As an example: - security.acme.certs."example.com".allowKeysForGroup = true; systemd.services.molly-brown.serviceConfig.SupplementaryGroups = [ config.security.acme.certs."example.com".group ];