infra/hosts/nachtigall/backups.nix
teutat3s 2195b7ed0a
All checks were successful
Flake checks / Check (pull_request) Successful in 19m22s
feat: backups to hetzner storagebox
2023-11-18 22:30:23 +01:00

13 lines
312 B
Nix

{ flake, ... }: {
age.secrets."restic-repo-droppie" = {
file = "${flake.self}/secrets/restic-repo-droppie.age";
mode = "400";
owner = "root";
};
age.secrets."restic-repo-storagebox" = {
file = "${flake.self}/secrets/restic-repo-storagebox.age";
mode = "400";
owner = "root";
};
}