16 lines
215 B
Nix
16 lines
215 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./secret-config.nix
|
|
];
|
|
|
|
sops.secrets.dyndns = {
|
|
format = "dotenv";
|
|
sopsFile = ./dyndns.env;
|
|
owner = config.systemd.services.dyndns.serviceConfig.User;
|
|
};
|
|
}
|