This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/lime/services/ddns-updater.nix

20 lines
474 B
Nix
Raw Normal View History

2024-05-29 17:15:20 +02:00
{ pkgs, config, ... }: {
services.inadyn = {
# TODO wait for fix
# https://github.com/troglobit/inadyn/issues/483
enable = false;
2024-05-29 17:15:20 +02:00
settings.provider.porkbun = {
checkip-server = "icanhazip.com";
username = config.age.secrets.porkbun-user.path; # public key
password = config.age.secrets.porkbun.path; # private key
#hostname = [
# "4o1x5.dev"
# "*.4o1x5.dev"
#];
2024-05-29 17:15:20 +02:00
ssl = true;
ttl = 600;
2024-05-29 17:15:20 +02:00
};
};
}