feat: remove tailscale, setup ddclient for namecheap

This commit is contained in:
Jacob Bachmann 2024-09-08 23:48:28 +02:00
parent 0819f48d04
commit b08fb0c4b3
No known key found for this signature in database
GPG key ID: 7753026D577922A6
8 changed files with 40 additions and 7 deletions

View file

@ -0,0 +1,17 @@
{ config, ... }:
{
age.secrets.passwords-ddclient-namecheap = {
file = ../../../secrets/passwords/ddclient/namecheap.age;
};
services.ddclient = {
enable = true;
use = "web, web=ifconfig.me/";
protocol = "namecheap";
server = "dynamicdns.park-your-domain.com";
username = "dryb.org";
passwordFile = config.age.secrets.passwords-ddclient-namecheap.path;
domains = [ "vpn" ];
interval = "10min";
};
}