dots/modules/nixos/features/ddns-updater.nix
2026-01-17 17:27:17 +11:00

24 lines
533 B
Nix

{
services = {
ddns-updater = {
enable = true;
environment = {
CONFIG_FILEPATH = "/srv/ddns-updater/config.json";
SERVER_ENABLED = "no";
TZ = "Australia/Melbourne";
};
};
# borgmatic.settings = {
# source_directories = [ ];
# postgresql_databases = [
# {
# name = "ddns-updater";
# hostname = "localhost";
# username = "root";
# password = "{credential systemd borgmatic-pg}";
# }
# ];
# };
};
}