nixos-configuration/hosts/iron/services/dyndns.nix
Jakob Lechner 5e66b16f88
Change network interface names
I moved the network card to a different slot.
2023-06-11 15:31:25 +00:00

17 lines
391 B
Nix

{ config, ... }:
{
sops.secrets.duckdns-secret = {
sopsFile = ../secrets.yaml;
};
services.ddclient = {
enable = true;
interval = "1min";
protocol = "duckdns";
server = "www.duckdns.org";
username = "nouser";
passwordFile = config.sops.secrets.duckdns-secret.path;
domains = [ "jalr-bw" ];
use = "if, if=enp3s5";
#usev6=ifv6, ifv6=enp3s4
};
}