9 lines
282 B
Nix
9 lines
282 B
Nix
{ lib, ... }:
|
|
{
|
|
options.services.ddclient-hetzner = with lib; {
|
|
enable = mkEnableOption "Enable ddclient-hetzner";
|
|
zone = mkOption { type = types.str; };
|
|
domains = mkOption { type = types.listOf types.str; };
|
|
passwordFile = mkOption { type = types.path; };
|
|
};
|
|
}
|