nixos/dafoe/services/restic.nix

16 lines
391 B
Nix
Raw Normal View History

2024-05-08 11:03:22 +02:00
{
services.restic.backups = {
giteaBackup = {
paths = [ "/forgejo/dump" ];
2024-05-28 08:56:45 +02:00
environmentFile = "${../../nix-secrets/dafoe/gitea/backupCreds}";
passwordFile = "${../../nix-secrets/dafoe/restic/password}";
2024-05-08 11:03:22 +02:00
repository = "b2:gitea-willem";
initialize = true;
timerConfig = {
OnCalendar = "04:00";
Persistent = true;
};
};
};
}