From 00f77df6982eea8e7b3e6e964e39dcd471aa1bb7 Mon Sep 17 00:00:00 2001 From: blake Date: Tue, 7 Oct 2025 14:23:25 -0500 Subject: [PATCH] 20 current 2025-10-07 00:49:35 25.05.20251001.5b5be50 6.12.49 * --- modules/system/backups.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/system/backups.nix b/modules/system/backups.nix index bcd40aa..074b046 100644 --- a/modules/system/backups.nix +++ b/modules/system/backups.nix @@ -1,6 +1,7 @@ { config, lib, pkgs, ... }: let + cfg = config.modules.system.backups; borg = "${pkgs.borgbackup}/bin/borg"; backup_paths = lib.unique config.modules.system.backups.paths; passwd_file = config.sops.secrets."borg_passwd".path; @@ -14,7 +15,7 @@ in }; repo = lib.mkOption { type = lib.types.path; - default = /holocron/borg; + default = "/holocron/borg"; description = "borg repository path"; }; passphraseFile = lib.mkOption {