dotfiles/nixos/backups.nix

26 lines
744 B
Nix
Raw Normal View History

2020-06-04 17:51:26 +01:00
{ config, pkgs, ... }:
2020-07-12 08:53:40 +01:00
let
2022-03-10 12:25:23 +00:00
extraArgs =
[ "--exclude='.cache'" "--exclude='.rustup'" "--exclude='.cargo'" ];
in {
2020-06-04 17:51:26 +01:00
2021-11-22 19:32:26 +00:00
services = {
restic.backups.home-to-bolty = {
passwordFile = "/etc/nixos/secrets/restic-password-bolty";
paths = [ "/home" ];
repository = "rest:http://bolty:8000/";
timerConfig = { OnCalendar = "hourly"; };
extraBackupArgs = extraArgs;
};
2020-06-04 17:51:26 +01:00
2021-11-22 19:32:26 +00:00
restic.backups.home-to-b2 = {
passwordFile = "/etc/nixos/secrets/restic-password-b2";
paths = [ "/home" ];
repository = "b2:cyplo-restic-${config.networking.hostName}:/";
timerConfig = { OnCalendar = "hourly"; };
extraBackupArgs = extraArgs;
2021-12-04 09:20:11 +00:00
environmentFile = "/etc/nixos/secrets/b2-env";
2020-06-04 17:51:26 +01:00
};
2021-11-22 19:32:26 +00:00
};
}