a5b2e46586
few side refactors of this: - no more `dns.domain`, it all must rely on `fqdn`, prevents inconsistencies. - also added an specific host `tuxcord-acmetest` that uses the key zone for `nix.tuxcord.net` to test certificate pulling.
12 lines
176 B
Nix
12 lines
176 B
Nix
{
|
|
acme = {
|
|
enable = true;
|
|
rfc2136.nameserver = "tuxcord.net";
|
|
};
|
|
|
|
dns.enable = true;
|
|
networking.fqdn = "nix.tuxcord.net";
|
|
|
|
time.timeZone = "Europe/Madrid";
|
|
}
|