14 lines
235 B
Nix
14 lines
235 B
Nix
|
{
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
my.backup = {
|
||
|
enable = true;
|
||
|
jobName = "titanRsync";
|
||
|
repo = "titan";
|
||
|
passFile = config.sops.secrets."borg/rsyncnet".path;
|
||
|
sshKeyFile = config.sops.secrets."rsyncnet/id_ed25519".path;
|
||
|
};
|
||
|
}
|