1
0

hosts/clerie-backup: Replicate backups with restic instead of borgbackup

This commit is contained in:
2025-11-16 19:40:33 +01:00
parent 971fb88d97
commit f43eba0036
3 changed files with 29 additions and 32 deletions

View File

@@ -0,0 +1,23 @@
{ lib, ... }:
with lib;
{
clerie.backup = {
enable = true;
targets = mkForce {
hetzner-storage-box = {
serverUrl = "sftp://u275370-sub2@u275370.your-storagebox.de:23";
sshKeyFile = "/var/src/secrets/ssh/borg-backup-replication-hetzner";
};
};
jobs.replication = {
paths = [
"/mnt/clerie-backup/cyan"
];
exclude = [
"/mnt/clerie-backup/cyan/.htpasswd"
];
};
};
}