29 lines
596 B
Nix
29 lines
596 B
Nix
{ ... }:
|
|
{
|
|
services.restic = {
|
|
enable = true;
|
|
|
|
backups = {
|
|
localbackup = {
|
|
exclude = [
|
|
"/home/*/.cache/*"
|
|
"/home/*/.local/share/libvirt/*"
|
|
"/home/*/.local/share/Steam/*"
|
|
"/home/*/.local/share/Trash/*"
|
|
"*/venv/*"
|
|
"*/.direnv/*"
|
|
"*/Android/*"
|
|
];
|
|
initialize = true;
|
|
paths = [
|
|
"/home"
|
|
];
|
|
repository = "s3:https://s3.filmsli.de/restic-framework";
|
|
pruneOpts = [
|
|
"--keep-daily 7"
|
|
"--keep-weekly 4"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|