mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 10:36:50 +07:00
10 lines
195 B
Nix
10 lines
195 B
Nix
{ dns, ... }: with dns.lib.combinators; {
|
|
owner = {
|
|
username = "Stef-00012";
|
|
email = "admin@stefdp.com";
|
|
};
|
|
proxy = false;
|
|
records = {
|
|
CNAME = [ "proxy.stefdp.com." ];
|
|
};
|
|
}
|