1
0
Fork 0

Use inadyn instead of ddclient

This commit is contained in:
Avery 2025-02-16 19:34:44 +01:00
parent f5e9e140fe
commit 25ddde2a9b
Signed by: Avery
GPG key ID: B684FD451B692E04
4 changed files with 12 additions and 17 deletions

View file

@ -0,0 +1,10 @@
{ config, ... }: {
services.inadyn = {
enable = true;
provider."cloudflare.com" = {
hostname = [ "rcia.dev" "*.rcia.dev" ];
username = "rcia.dev";
password = "${config.sops.placeholder.cloudflare.api_key}";
};
};
}