ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
83 lines
1.9 KiB
Nix
83 lines
1.9 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.cfdyndns;
|
|
in
|
|
{
|
|
imports = [
|
|
(mkRemovedOptionModule
|
|
[ "services" "cfdyndns" "apikey" ]
|
|
"Use services.cfdyndns.apikeyFile instead.")
|
|
];
|
|
|
|
options = {
|
|
services.cfdyndns = {
|
|
enable = mkEnableOption (lib.mdDoc "Cloudflare Dynamic DNS Client");
|
|
|
|
email = mkOption {
|
|
type = types.str;
|
|
description = lib.mdDoc ''
|
|
The email address to use to authenticate to CloudFlare.
|
|
'';
|
|
};
|
|
|
|
apikeyFile = mkOption {
|
|
default = null;
|
|
type = types.nullOr types.str;
|
|
description = lib.mdDoc ''
|
|
The path to a file containing the API Key
|
|
used to authenticate with CloudFlare.
|
|
'';
|
|
};
|
|
|
|
records = mkOption {
|
|
default = [];
|
|
example = [ "host.tld" ];
|
|
type = types.listOf types.str;
|
|
description = lib.mdDoc ''
|
|
The records to update in CloudFlare.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.cfdyndns = {
|
|
description = "CloudFlare Dynamic DNS Client";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
startAt = "*:0/5";
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
User = config.ids.uids.cfdyndns;
|
|
Group = config.ids.gids.cfdyndns;
|
|
};
|
|
environment = {
|
|
CLOUDFLARE_EMAIL="${cfg.email}";
|
|
CLOUDFLARE_RECORDS="${concatStringsSep "," cfg.records}";
|
|
};
|
|
script = ''
|
|
${optionalString (cfg.apikeyFile != null) ''
|
|
export CLOUDFLARE_APIKEY="$(cat ${escapeShellArg cfg.apikeyFile})"
|
|
''}
|
|
${pkgs.cfdyndns}/bin/cfdyndns
|
|
'';
|
|
};
|
|
|
|
users.users = {
|
|
cfdyndns = {
|
|
group = "cfdyndns";
|
|
uid = config.ids.uids.cfdyndns;
|
|
};
|
|
};
|
|
|
|
users.groups = {
|
|
cfdyndns = {
|
|
gid = config.ids.gids.cfdyndns;
|
|
};
|
|
};
|
|
};
|
|
}
|