mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
37 lines
917 B
Nix
37 lines
917 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkOizysModule;
|
|
in
|
|
mkOizysModule config "backups" {
|
|
environment.systemPackages = with pkgs; [rclone];
|
|
|
|
services.restic.backups.gdrive = {
|
|
# BUG: if .conda/environments.txt doesn't exist then this won't work
|
|
# workaround for now `mkdir ~/.conda && touch ~/.conda/environments.txt`
|
|
|
|
extraBackupArgs = [
|
|
"--exclude-file /home/daylin/.config/restic/excludes.txt"
|
|
"--exclude-file /home/daylin/.conda/environments.txt"
|
|
"--verbose"
|
|
"--one-file-system"
|
|
"--tag systemd.timer"
|
|
];
|
|
pruneOpts = [
|
|
"--verbose"
|
|
"--tag systemd.timer"
|
|
"--keep-daily 7"
|
|
"--keep-weekly 4"
|
|
"--keep-monthly 12"
|
|
"--keep-yearly 3"
|
|
];
|
|
timerConfig = {
|
|
OnCalendar = "00:05";
|
|
Persistent = true;
|
|
RandomizedDelaySec = "5h";
|
|
};
|
|
};
|
|
}
|