Flakify lib, sas

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-08-17 16:47:20 +03:00
parent 4129589665
commit 795ea28583
22 changed files with 110 additions and 98 deletions

15
scripts/update.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
find . -type f -name "*.nix" | while read -r file; do
update_command=$(grep -oP '^#\s*AUTO-UPDATE:\s*\K.+' "$file" || true)
if [[ -n "$update_command" ]]; then
echo "Running update command in: $file"
eval "$update_command"
fi
done
nix flake update