repair: run sudo early

This commit is contained in:
Aaron Bieber 2024-07-19 09:14:20 -06:00
parent 2bb67e3a18
commit ae58f66bbd
No known key found for this signature in database

View File

@ -1,7 +1,8 @@
#!/usr/bin/env bash
sudo date
while nix flake check --no-build |& grep "is not valid" >/tmp/invalid; do
path=$(cat /tmp/invalid | awk -F\' '{print $2}')
echo "Repairing $path"
sudo nix-store --repair-path $path >/dev/null
done
date