mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 18:46:50 +07:00
11 lines
187 B
Nix
11 lines
187 B
Nix
{ dns, ... }: {
|
|
metadata = {
|
|
proxy = false;
|
|
owner = {
|
|
username = "heypxl";
|
|
};
|
|
};
|
|
records = with dns.lib.combinators; {
|
|
CNAME = [ "heypxl.github.io." ];
|
|
};
|
|
}
|