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