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