new domain

This commit is contained in:
Kopatz
2025-09-14 20:33:47 +02:00
parent 2ea08b7a20
commit 4fddc51c0f
34 changed files with 138 additions and 113 deletions

View File

@@ -0,0 +1,14 @@
{ config, pkgs, lib, ... }: {
age.secrets.cloudflare-api = {
file = ../../secrets/cloudflare-api.age;
};
services.ddclient = {
enable = true;
domains = [ "kopatz.dev" ];
protocol = "cloudflare";
zone = "kopatz.dev";
ssl = true;
passwordFile = config.age.secrets."cloudflare-api".path;
usev6 = "disabled";
};
}