ahuston-0 95983b77b9 fix sync directories
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2024-06-22 17:04:01 +00:00

11 lines
268 B
Bash

#!/usr/bin/env nix
#! nix shell nixpkgs#bash nixpkgs#findutils nixpkgs#attic-client --command bash
sync_directories=(
/ZFS/ZFS-primary/hydra
)
for dir in "${sync_directories[@]}"; do
find "$dir" -regex ".*\.drv$" -exec attic push cache-nix-dot '{}' \;
done