Browse Source

support namecheap dynDNS on felonyspork

main
Leonora Tindall 2 years ago
parent
commit
8a823fee8f
Signed by: nora GPG Key ID: 7A8B52EC67E09AAF
  1. 13
      common/fragments/ddclient.nix
  2. 1
      hosts/felonyspork/configuration.nix

13
common/fragments/ddclient.nix

@ -0,0 +1,13 @@
{ config, pkgs, ... }: {
services.ddclient = {
enable = true;
domains = [ "home.nora.codes" ];
interval = "30min";
ipv6 = false;
protocol = "namecheap";
use = "web";
server = "dynamicdns.park-your-domain.com";
username = "nora.codes";
passwordFile = "/home/nora/dyndnspassword";
};
}

1
hosts/felonyspork/configuration.nix

@ -14,6 +14,7 @@
../../common/fragments/mosh.nix
../../common/fragments/iperf.nix
../../common/fragments/prometheus_exporters.nix
../../common/fragments/ddclient.nix
];
# Use the systemd-boot EFI boot loader.

Loading…
Cancel
Save