nix-config/packages/upload-to-files.nix
Oliver Davies d18476da73
All checks were successful
/ check (push) Successful in 1m27s
Refactor
2025-07-09 06:54:21 +01:00

11 lines
209 B
Nix

{ pkgs }:
with pkgs;
writeShellApplication {
name = "upload-to-files";
text = ''
${pkgs.rsync}/bin/rsync -avz --info=progress2 "$1" ssh.oliverdavies.uk:/var/www/vhosts/files.oliverdavies.uk
'';
}