nix-config/packages/backup-websites.nix

16 lines
295 B
Nix
Raw Normal View History

2025-07-12 16:33:50 +01:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "backup-websites";
2025-07-12 16:33:50 +01:00
runtimeInputs = with pkgs; [ rsync ];
text = ''
2025-07-12 16:33:50 +01:00
backup_path="''$HOME/server-backup"
2025-07-12 16:33:50 +01:00
mkdir -p "''$backup_path"
2025-07-12 16:33:50 +01:00
rsync -avzP nixedo.oliverdavies.uk:/var/www/vhosts/ "''$backup_path" --delete-after
'';
}