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
2024-05-29 17:15:20 +02:00

13 lines
253 B
Nix

{ pkgs, config, ... }: {
services.inadyn = {
enable = true;
# TODO fix
settings.provider.porkbun = {
username = config.age.secrets.porkbun-user.path;
password = config.age.secrets.porkbun.path;
ssl = true;
};
};
}