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

13 lines
220 B
Nix
Raw Normal View History

2023-02-07 18:24:28 +01:00
{
lib,
config,
...
}: let
cfg = config.services.ddclientovh;
in {
options.services.ddclientovh = with lib; {
enable = mkEnableOption "Enable ddclient-ovh";
2023-02-07 18:24:28 +01:00
domain = mkOption {type = types.str;};
};
}