1
0

hosts/backup-4: Replicate backup to palladium

This commit is contained in:
2025-04-18 11:24:06 +02:00
parent fed00bd41b
commit 414402561b
6 changed files with 49 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
{ lib, ... }:
with lib;
{
clerie.backup = {
enable = true;
targets = mkForce {
palladium.serverUrl = "http://[fd90:37fd:ddec:d921::2]:43242";
};
jobs.replication = {
paths = [
"/mnt/backup-4/magenta"
];
exclude = [
"/mnt/backup-4/magenta/.htpasswd"
];
};
};
}