fix: formatting and tidying up

This commit is contained in:
silver 2023-06-15 21:38:42 +01:00
parent 144b572b1b
commit 775d6412af
9 changed files with 8 additions and 98 deletions

View file

@ -1,4 +1,4 @@
{
{ config, ... }:{
# group that will own the certificates
users.groups.acme = {};
@ -10,11 +10,9 @@
defaults = {
email = "admin_acme@skynet.ie";
# we use our own dns authorative server for verifying we own the domain.
dnsProvider = "rfc2136";
credentialsFile = "/run/agenix/acme";
# We don't need to wait for propagation since this is a local DNS server
dnsPropagationCheck = true;
credentialsFile = config.age.secrets.acme.path;
};
certs = {
@ -25,13 +23,6 @@
"*.minecraft.games.skynet.ie"
];
};
# temp basis
#"ulcompsoc.ie" = {
# domain = "ulcompsoc.ie";
# extraDomainNames = ["*.ulcompsoc.ie" ];
#};
};
};
}