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

12 lines
220 B
Nix

{
lib,
config,
...
}: let
cfg = config.services.ddclientovh;
in {
options.services.ddclientovh = with lib; {
enable = mkEnableOption "Enable ddclient-ovh";
domain = mkOption {type = types.str;};
};
}