nixfleet/modules/cloudflare-dyndns/default.nix
Andrea Ciceri 6b795f7557
Some checks failed
/ test (push) Failing after 1h51m2s
Enable jellyfin on sisko
2024-12-30 17:06:24 +01:00

21 lines
485 B
Nix

{ config, ... }:
{
services.cloudflare-dyndns = {
enable = true;
ipv4 = true;
ipv6 = false; # not anymore 😭
domains = [
"aciceri.dev"
"git.aciceri.dev"
"home.aciceri.dev"
"torrent.aciceri.dev"
"search.aciceri.dev"
"invidious.aciceri.dev"
"vpn.aciceri.dev"
"photos.aciceri.dev"
"status.aciceri.dev"
"jelly.aciceri.dev"
];
apiTokenFile = config.age.secrets.cloudflare-dyndns-api-token.path;
};
}