restic: add some more ignores

This commit is contained in:
notohh 2023-06-06 00:08:55 -04:00
parent 5a582e45e4
commit 84411fc8a9
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -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";