From 2446716e8f7a5228e92b13fb119d5e2685f004d1 Mon Sep 17 00:00:00 2001 From: gwg313 <70684146+gwg313@users.noreply.github.com> Date: Sat, 22 Mar 2025 17:00:50 -0400 Subject: [PATCH] update restic --- common/nixos/restic.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/nixos/restic.nix b/common/nixos/restic.nix index 83bc439..11bc684 100644 --- a/common/nixos/restic.nix +++ b/common/nixos/restic.nix @@ -3,7 +3,8 @@ lib, user, ... -}: { +}: +{ options = { restic.enable = lib.mkEnableOption "Enables Restic"; }; @@ -16,17 +17,16 @@ services.restic.backups = { backups = { user = "${user}"; - repository = "/backups"; + repository = "/backups/grymforge"; initialize = true; passwordFile = "${config.sops.secrets.restic_key.path}"; paths = [ "/home/${user}/repos" "/home/${user}/Documents" "/home/${user}/.local/share/password-store" - "/home/${user}/.local/share/buku" ]; timerConfig = { - onCalendar = "saturday 23:00"; + OnCalendar = "23:00"; }; }; };