mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 10:36:50 +07:00
style: formatting with nixfmt
This commit is contained in:
parent
a97ad1b804
commit
08350def49
31 changed files with 143 additions and 240 deletions
|
|
@ -1,12 +1,11 @@
|
|||
{ dns, ... }: let
|
||||
owner = {
|
||||
username = "satr14washere";
|
||||
email = "admin@satr14.my.id";
|
||||
};
|
||||
proxy = false;
|
||||
in with dns.lib.combinators; {
|
||||
{ dns, ... }:
|
||||
with dns.lib.combinators;
|
||||
{
|
||||
A = [
|
||||
{ address = "203.0.113.1"; ttl = 60 * 60; }
|
||||
{
|
||||
address = "203.0.113.1";
|
||||
ttl = 60 * 60;
|
||||
}
|
||||
"203.0.113.2"
|
||||
(ttl (60 * 60) (a "203.0.113.3"))
|
||||
];
|
||||
|
|
@ -18,7 +17,13 @@ in with dns.lib.combinators; {
|
|||
MX = mx.google;
|
||||
|
||||
TXT = [
|
||||
(with spf; strict [ "a:mail.example.com" google ])
|
||||
(
|
||||
with spf;
|
||||
strict [
|
||||
"a:mail.example.com"
|
||||
google
|
||||
]
|
||||
)
|
||||
];
|
||||
|
||||
DMARC = [ (dmarc.postmarkapp "mailto:re+abcdefghijk@dmarc.postmarkapp.com") ];
|
||||
|
|
@ -48,8 +53,16 @@ in with dns.lib.combinators; {
|
|||
{
|
||||
svcPriority = 1;
|
||||
targetName = ".";
|
||||
alpn = [ "http/1.1" "h2" "h3" ];
|
||||
ipv4hint = [ "203.0.113.1" "203.0.113.2" "203.0.113.3" ];
|
||||
alpn = [
|
||||
"http/1.1"
|
||||
"h2"
|
||||
"h3"
|
||||
];
|
||||
ipv4hint = [
|
||||
"203.0.113.1"
|
||||
"203.0.113.2"
|
||||
"203.0.113.3"
|
||||
];
|
||||
ipv6hint = [ "4321:0:1:2:3:4:567:89ab" ];
|
||||
}
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue