10 lines
216 B
Nix
10 lines
216 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; };
|
|
};
|
|
}
|