I want to use opendns for my son computer,
I need to configure the ddclient,conf
normally in /etc/ddclients.conf
I noticed the huge amount of options for the package which got me a bit scared, but maybe one of you can come to the recue?
The config
needs to look something like this:
##
## OpenDNS.com account-configuration
##
protocol=dyndns2
use=web, web=myip.dnsomatic.com
ssl=yes
server=updates.opendns.com
login=opendns_username
password='opendns_password'
opendns_network_label
Something like this
environment.systemPackages = with pkgs; [ ddclient ];
services.ddclient.enable = true;
services.ddclient.quiet = true;
services.ddclient.protocol = "dyndns2";
services.ddclient.use = "web, web=myip.dnsomatic.com";
services.ddclient.ssl = "yes";
services.ddclient.server = "updates.opendns.com";
services.ddclient.username = "opendns_username";
services.ddclient.passwordFile= "opendns_password";
services.ddclient.extraConfig = "opendns_network_label";
or
services.ddclient.configFile = "/root/nixos/secrets/ddclient.conf";
I think my syntax is not okay?