17 lines
262 B
Nix
17 lines
262 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.borgbackup.jobs = {
|
|
containers = {
|
|
paths = [
|
|
"/srv/containers"
|
|
];
|
|
encryption.mode = "none";
|
|
repo = "/srv/backup/borg/containers";
|
|
compression = "auto,zstd";
|
|
startAt = "daily";
|
|
};
|
|
};
|
|
}
|
|
|