2283ee602a
This enables the tracking of core-services-01 over the infrastructure repository. Co-authored-by: Gabriel DORIATH DOHLER <gabriel.doriath.dohler@ens.psl.eu> Reviewed-on: https://git.rz.ens.wtf/Klub-RZ/infrastructure/pulls/1 Co-authored-by: raito <raito@noreply.git.rz.ens.wtf> Co-committed-by: raito <raito@noreply.git.rz.ens.wtf>
14 lines
251 B
Nix
14 lines
251 B
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
my = config.my;
|
|
in
|
|
{
|
|
security.acme.acceptTerms = true;
|
|
security.acme.email = my.email;
|
|
|
|
security.acme.server =
|
|
if my.acmeStaging
|
|
then "https://acme-staging-v02.api.letsencrypt.org/directory"
|
|
else null;
|
|
}
|