2024-11-15 10:17:56 +01:00
|
|
|
{ lib, config, ... }:
|
|
|
|
let
|
2019-02-03 11:55:23 +01:00
|
|
|
cfg = config.services.ddclientovh;
|
2024-11-15 10:17:56 +01:00
|
|
|
in
|
|
|
|
{
|
2019-02-03 11:55:23 +01:00
|
|
|
options.services.ddclientovh = with lib; {
|
|
|
|
enable = mkEnableOption "Enable ddclient-ovh";
|
2024-11-15 10:17:56 +01:00
|
|
|
domain = mkOption { type = types.str; };
|
2019-02-03 11:55:23 +01:00
|
|
|
};
|
|
|
|
}
|