infra/nix/os/modules/ddclient-hetzner.nix

10 lines
282 B
Nix
Raw Normal View History

2024-11-15 10:17:56 +01:00
{ lib, ... }:
{
options.services.ddclient-hetzner = with lib; {
enable = mkEnableOption "Enable ddclient-hetzner";
2024-11-15 10:17:56 +01:00
zone = mkOption { type = types.str; };
domains = mkOption { type = types.listOf types.str; };
passwordFile = mkOption { type = types.path; };
};
}