forked from aylac.top/nixcfg
this repo has no description

fixed me being dumb

Changed files
+4 -3
modules
nixos
profiles
backups
snippets
restic
+2 -2
modules/nixos/profiles/backups/default.nix
···
pkgs,
...
}: let
-
backupDestinationA = "rclone:gdrive:/backups/${config.networking.hostName}";
+
backupDestinationA = "rclone:a_gdrive:/backups/${config.networking.hostName}";
mkRepoA = service: "${backupDestinationA}/${service}";
-
#backupDestinationB = "rclone:gdrive:/backups/${config.networking.hostName}";
+
#backupDestinationB = "rclone:b_gdrive:/backups/${config.networking.hostName}";
#mkRepoB = service: "${backupDestinationB}/${service}";
stop = service: "${pkgs.systemd}/bin/systemctl stop ${service}";
start = service: "${pkgs.systemd}/bin/systemctl start ${service}";
+2 -1
modules/snippets/restic/default.nix
···
rcloneConfigFile = config.age.secrets.rclone.path;
timerConfig = {
-
OnCalendar = "*-*-* 02:00:00";
+
OnCalendar = "*-*-* 02,14:00:00";
+
#OnCalendar = "*-*-* 03:14:00";
Persistent = true;
RandomizedDelaySec = "1200";
};