mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 10:36:50 +07:00
19 lines
364 B
Nix
19 lines
364 B
Nix
{ dns, ... }: {
|
|
metadata = {
|
|
proxy = false;
|
|
owner = {
|
|
username = "joestr";
|
|
email = "strasser999@gmail.com";
|
|
};
|
|
};
|
|
records = with dns.lib.combinators; {
|
|
A = [ "142.132.173.34" ];
|
|
AAAA = [ "2a01:4f8:1c0c:6cc0::1" ];
|
|
MX = [
|
|
{
|
|
preference = 10;
|
|
exchange = "achlys.infra.joestr.at.";
|
|
}
|
|
];
|
|
};
|
|
}
|