nixos/modules/services/dyndns/default.nix

34 lines
782 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;
2023-11-07 23:13:51 +01:00
inherit (config.networking) domain;
2023-06-04 17:17:35 +02:00
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";
2023-11-07 23:13:51 +01:00
inherit (cfg) username passwordFile;
2023-06-04 17:17:35 +02:00
domains = [ "serverle.${domain}" ];
ipv6 = true;
};
};
}