13 lines
253 B
Nix
13 lines
253 B
Nix
{ pkgs, config, ... }: {
|
|
|
|
services.inadyn = {
|
|
enable = true;
|
|
# TODO fix
|
|
settings.provider.porkbun = {
|
|
username = config.age.secrets.porkbun-user.path;
|
|
password = config.age.secrets.porkbun.path;
|
|
ssl = true;
|
|
};
|
|
};
|
|
}
|