nixos-config/hosts/titan/backup.nix

14 lines
235 B
Nix
Raw Normal View History

2024-12-30 23:14:50 -05:00
{
config,
...
}:
{
my.backup = {
enable = true;
jobName = "titanRsync";
repo = "titan";
passFile = config.sops.secrets."borg/rsyncnet".path;
sshKeyFile = config.sops.secrets."rsyncnet/id_ed25519".path;
};
}