9 lines
186 B
Nix
9 lines
186 B
Nix
{ config, secret, ... }:
|
|
|
|
{
|
|
services.cfdyndns = {
|
|
enable = true;
|
|
inherit (secret.cfdyndns) email records;
|
|
apiTokenFile = config.age.secrets.cfdyndns-api-token.path;
|
|
};
|
|
}
|