snowflake/hosts/tsuki/services/restic.nix

46 lines
1,010 B
Nix
Raw Normal View History

2023-06-02 23:30:30 -04:00
{
pkgs,
config,
...
}: {
sops.secrets.restic-repo-pwd = {};
environment.systemPackages = [pkgs.restic];
services.restic = {
backups = {
tsuki = {
paths = [
"/home"
];
exclude = [
2023-06-06 00:08:55 -04:00
"*.qcow2"
"*.iso"
2023-06-02 23:30:30 -04:00
"/home/*/Downloads"
"/home/*/Games"
"/home/*/Videos"
"/home/*/.cache"
"/home/*/.wine"
"/home/*/.rustup"
"/home/*/.cargo"
2023-06-06 00:08:55 -04:00
"/home/*/.factorio"
"/home/*/.mplayer"
"/home/*/.steam"
2023-06-02 23:30:30 -04:00
"/home/*/.local/share/Trash"
"/home/*/.local/share/Steam"
"/home/*/.local/share/.var"
];
pruneOpts = [
2023-06-06 00:08:55 -04:00
"--keep-daily=8"
"--keep-weekly=6"
"--keep-monthly=5"
2023-06-02 23:30:30 -04:00
];
initialize = true;
repository = "/nas/home";
passwordFile = config.sops.secrets.restic-repo-pwd.path;
timerConfig = {
OnCalendar = "daily";
};
};
};
};
}