restic: add some more ignores
This commit is contained in:
parent
5a582e45e4
commit
84411fc8a9
1 changed files with 8 additions and 6 deletions
|
@ -12,24 +12,26 @@
|
||||||
"/home"
|
"/home"
|
||||||
];
|
];
|
||||||
exclude = [
|
exclude = [
|
||||||
|
"*.qcow2"
|
||||||
|
"*.iso"
|
||||||
"/home/*/Downloads"
|
"/home/*/Downloads"
|
||||||
"/home/*/Games"
|
"/home/*/Games"
|
||||||
"/home/*/Videos"
|
"/home/*/Videos"
|
||||||
"/home/*/cryptomator"
|
|
||||||
"/home/*/.cache"
|
"/home/*/.cache"
|
||||||
"/home/*/.wine"
|
"/home/*/.wine"
|
||||||
"/home/*/.rustup"
|
"/home/*/.rustup"
|
||||||
"/home/*/.cargo"
|
"/home/*/.cargo"
|
||||||
|
"/home/*/.factorio"
|
||||||
|
"/home/*/.mplayer"
|
||||||
|
"/home/*/.steam"
|
||||||
"/home/*/.local/share/Trash"
|
"/home/*/.local/share/Trash"
|
||||||
"/home/*/.local/share/Steam"
|
"/home/*/.local/share/Steam"
|
||||||
"/home/*/.local/share/.var"
|
"/home/*/.local/share/.var"
|
||||||
"*.qcow2"
|
|
||||||
"*.iso"
|
|
||||||
];
|
];
|
||||||
pruneOpts = [
|
pruneOpts = [
|
||||||
"--keep-daily=5"
|
"--keep-daily=8"
|
||||||
"--keep-weekly=3"
|
"--keep-weekly=6"
|
||||||
"--keep-monthly=2"
|
"--keep-monthly=5"
|
||||||
];
|
];
|
||||||
initialize = true;
|
initialize = true;
|
||||||
repository = "/nas/home";
|
repository = "/nas/home";
|
||||||
|
|
Loading…
Reference in a new issue