nixos/modules/services/dyndns/default.nix

35 lines
808 B
Nix
Raw Normal View History

2023-06-04 17:17:35 +02:00
# running dyndns updates
2023-11-07 22:00:00 +01:00
{ config, lib, ... }:
2023-06-04 17:17:35 +02:00
let
cfg = config.my.services.dyndns;
domain = config.networking.domain;
in
{
options.my.services.dyndns = with lib; {
enable = mkEnableOption "Dyndns";
username = mkOption {
type = types.str;
description = "Username for the dyndns.";
example = "admin";
default = "Stunkymonkey-dyndns";
};
passwordFile = mkOption {
type = types.path;
description = "Password for the username for dyndns.";
example = "/run/secrets/freshrss";
};
};
config = lib.mkIf cfg.enable {
services.ddclient = {
enable = true;
server = "dyndns.inwx.com";
username = cfg.username;
passwordFile = cfg.passwordFile;
domains = [ "serverle.${domain}" ];
ipv6 = true;
};
};
}