17 lines
213 B
Nix
17 lines
213 B
Nix
{
|
|
imports = [
|
|
./hardware.nix
|
|
./storage.nix
|
|
];
|
|
|
|
acme = {
|
|
enable = true;
|
|
useSelfDns = true;
|
|
};
|
|
|
|
dns.enable = true;
|
|
networking.fqdn = "tuxcord.net";
|
|
|
|
time.timeZone = "Canada/Eastern";
|
|
}
|