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

8 lines
164 B
Nix
Raw Permalink Normal View History

2024-11-15 10:17:56 +01:00
{ lib, ... }:
2023-02-07 18:24:28 +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; };
};
}