nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit 1e320fc54373e594174f321f91d8a9107f7c529a
parent 09038b178c844842bdada92edbcb5441cba5425f
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Wed, 30 Jul 2025 18:33:30 +0100

Install rsync dependency

Diffstat:
Mscripts/backup-local.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/backup-local.nix b/scripts/backup-local.nix @@ -22,7 +22,7 @@ read -n1 -r -p "Press any key to begin..." key # process mkdir -p "$(dirname "$report_file")" - rsync -avhP --delete --exclude=lost+found/ --exclude=reports/ "''${mount_points[0]}" "''${mount_points[1]}" 2>&1 | tee "$report_file" + ${pkgs.rsync}/bin/rsync -avhP --delete --exclude=lost+found/ --exclude=reports/ "''${mount_points[0]}" "''${mount_points[1]}" 2>&1 | tee "$report_file" ''; in { environment.systemPackages = [backup-local];