12 lines
171 B
Nix
12 lines
171 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
sops.secrets.dyndns = {
|
|
format = "dotenv";
|
|
sopsFile = ./dyndns.env;
|
|
owner = config.systemd.services.dyndns.serviceConfig.User;
|
|
};
|
|
}
|