23 lines
548 B
Nix
23 lines
548 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"
|
|
"firefly.aciceri.dev"
|
|
"import.firefly.aciceri.dev"
|
|
];
|
|
apiTokenFile = config.age.secrets.cloudflare-dyndns-api-token.path;
|
|
};
|
|
}
|