nix/host/x86_64-linux/home/Ddns.nix

24 lines
408 B
Nix
Raw Normal View History

{ ... }:
{
services.cloudflare-dyndns = {
enable = true;
apiTokenFile = "/storage/hot/data/CfToken";
deleteMissing = false;
ipv4 = true;
ipv6 = true;
proxied = false;
domains =
let
domain = "voronind.com";
in
[ domain ]
++ map (sub: "${sub}.${domain}") [
"git"
"mail"
"paste"
2025-01-09 13:09:49 +03:00
"share"
"vpn"
];
};
2024-12-02 21:12:45 +03:00
}