entities/zones/informis.land.nix
niten df9406af63 Remove alias and srv records for mail
These will be created elsewhere, automatically
2022-02-09 14:56:47 -08:00

30 lines
475 B
Nix

{
aliases = {
gemini = "procul.informis.land.";
git = "procul.informis.land.";
};
srv-records = {
tcp = {
ssh = [{
host = "procul.informis.land";
port = 22;
}];
http = [{
host = "procul.informis.land";
port = 80;
}];
https = [{
host = "procul.informis.land";
port = 443;
}];
};
};
hosts = {
procul = {
ipv4-address = "172.86.179.18";
};
};
}