bvm-radius: make sure nginx can see certificates

This commit is contained in:
Luke Granger-Brown 2021-09-27 08:00:41 +00:00
parent 00a02f8772
commit 6b766b111d

View file

@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0
{ config, depot, pkgs, ... }:
{ config, depot, lib, pkgs, ... }:
let
inherit (depot.ops) secrets;
in {
@ -64,6 +64,7 @@ in {
'';
};
};
users.users.nginx.extraGroups = lib.mkAfter [ "acme" ];
system.stateVersion = "21.05";
}