Revert "Nix"

This commit is contained in:
orangci 2026-03-21 17:09:29 +03:00 committed by GitHub
commit 3fac80dcfc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 239 additions and 158 deletions

View file

@ -1,11 +1,12 @@
{ dns, ... }:
with dns.lib.combinators;
{
{ dns, ... }: let
owner = {
username = "satr14washere";
email = "admin@satr14.my.id";
};
proxy = false;
in 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"))
];
@ -17,13 +18,7 @@ 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") ];
@ -53,16 +48,8 @@ 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" ];
}
];