mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 01:44:40 +02:00
11 lines
258 B
Nix
11 lines
258 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
services.ddclient = {
|
|
enable = true;
|
|
server = "dyndns.inwx.com";
|
|
username = "Stunkymonkey-dyndns";
|
|
passwordFile = "/root/.dyndns_password";
|
|
domains = [ "serverle.stunkymonkey.de" ];
|
|
ipv6 = true;
|
|
};
|
|
}
|