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

27 lines
455 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}") [
"chat"
"cloud"
"git"
"mail"
"office"
"paste"
"play"
"vpn"
];
};
2024-12-02 21:12:45 +03:00
}