From 07cc1920136ce61980c80c6bde3c267fcbc6218f Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Sat, 28 Mar 2026 18:46:16 -0500 Subject: begin poweredge config --- hosts/poweredge/ddns-updater.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hosts/poweredge/ddns-updater.nix (limited to 'hosts/poweredge/ddns-updater.nix') diff --git a/hosts/poweredge/ddns-updater.nix b/hosts/poweredge/ddns-updater.nix new file mode 100644 index 0000000..2f0ce53 --- /dev/null +++ b/hosts/poweredge/ddns-updater.nix @@ -0,0 +1,14 @@ +{ config, ... }: { + # Password file for mail application password + sops.secrets.ddnsUpdater.sopsFile = ./resources/secrets/ddns-updater-config.json; + + # Enable ddns updater + services.ddns-updater = { + enable = true; + environment = { + SERVER_ENABLED="no"; + CONFIG_FILEPATH = config.sops.secrets.ddnsUpdater.path; + PERIOD = "5m"; + }; + }; +} -- cgit v1.2.3