register/domains/part-of.my.id/c.nix
2026-03-23 07:31:59 +07:00

12 lines
221 B
Nix

{ dns, ... }: {
metadata = {
proxy = false;
owner = {
username = "orangci";
email = "c@orangc.xyz";
};
};
records = with dns.lib.combinators; {
CNAME = [ "edge.redirect.pizza." ];
};
}