teutat3s
ecd7b887cb
All checks were successful
Flake checks / Check (pull_request) Successful in 4m53s
Restic backups to garage S3 bucket nachtigall-backups https://garagehq.deuxfleurs.fr/documentation/connect/backup/#restic
24 lines
642 B
Nix
24 lines
642 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";
|
|
};
|
|
age.secrets.restic-repo-garage-nachtigall = {
|
|
file = "${flake.self}/secrets/restic-repo-garage-nachtigall.age";
|
|
mode = "400";
|
|
owner = "root";
|
|
};
|
|
age.secrets.restic-repo-garage-nachtigall-env = {
|
|
file = "${flake.self}/secrets/restic-repo-garage-nachtigall-env.age";
|
|
mode = "400";
|
|
owner = "root";
|
|
};
|
|
}
|