mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 10:36:50 +07:00
10 lines
177 B
Nix
10 lines
177 B
Nix
{ dns, ... }: {
|
|
metadata = {
|
|
owner = {
|
|
username = "satr14washere";
|
|
};
|
|
};
|
|
records = with dns.lib.combinators; {
|
|
CNAME = [ "5th-site.pages.dev." ];
|
|
};
|
|
}
|