reinstall

This commit is contained in:
Elias Gasparis 2025-11-08 14:18:13 +08:00
commit 237853b590
29 changed files with 1096 additions and 0 deletions

12
update.sh Executable file
View file

@ -0,0 +1,12 @@
#!/run/current-system/sw/bin/bash
# add things to git
COMMIT_MSG="Update NixOS config."
echo "Commit message?"
# what did I change?
read COMMIT_MSG
echo "OK!"
git add .
git commit -m "$COMMIT_MSG"
git push origin main