17 lines
391 B
Nix
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
|
|
};
|
|
}
|