ed9ec1aecf
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.
15 lines
219 B
Nix
15 lines
219 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./hardware.nix
|
|
./storage.nix
|
|
];
|
|
|
|
acme.enable = true;
|
|
acme.useSelfDns = true;
|
|
|
|
dns.enable = true;
|
|
networking.fqdn = "tuxcord.net";
|
|
time.timeZone = "Canada/Eastern";
|
|
}
|