nixos/modules/services/dyndns/default.nix
2024-10-22 23:05:26 +02:00

36 lines
836 B
Nix

# running dyndns updates
{ config, lib, ... }:
let
cfg = config.my.services.dyndns;
inherit (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.inadyn = {
enable = true;
settings.provider = {
"default@inwx.com" = {
inherit (cfg) username;
include = cfg.passwordFile;
hostname = "serverle.${domain}";
};
};
};
};
}