mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-23 12:05:50 -06:00
23 lines
550 B
Nix
23 lines
550 B
Nix
|
{
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
|
||
|
services.restic.backups.gdrive = {
|
||
|
# directories created by gitea and soft-serve aren't world readable
|
||
|
user = "root";
|
||
|
|
||
|
rcloneConfigFile = "/home/daylin/.config/rclone/rclone.conf";
|
||
|
repository = "rclone:g:archives/algiz";
|
||
|
passwordFile = config.sops.secrets.restic-algiz.path;
|
||
|
paths = [
|
||
|
"/home/daylin/services/git/"
|
||
|
"/home/daylin/services/gotosocial/"
|
||
|
"/home/daylin/services/caddy/"
|
||
|
"/home/daylin/services/wedding-website/"
|
||
|
"/home/daylin/services/bsky-pds/"
|
||
|
];
|
||
|
};
|
||
|
}
|