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