30 lines
475 B
Nix
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";
|
|
};
|
|
};
|
|
}
|