mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 18:46:50 +07:00
13 lines
255 B
Nix
13 lines
255 B
Nix
{ dns, ... }: {
|
|
metadata = {
|
|
description = "my website";
|
|
proxy = false;
|
|
owner = {
|
|
username = "ukriu";
|
|
email = "partofmyid@ukriu.com";
|
|
};
|
|
};
|
|
records = with dns.lib.combinators; {
|
|
CNAME = [ "ukriu.pages.dev." ];
|
|
};
|
|
}
|