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

11 lines
216 B
Nix
Raw Normal View History

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