removed a variable that served nothing and gave an error in the tty

This commit is contained in:
Tomas Rivera
2026-03-04 11:03:24 +01:00
parent a0f7e0d4e3
commit 246dd40b6f
-8
View File
@@ -147,14 +147,6 @@ home.sessionVariables = {
EDITOR = "neovim"; EDITOR = "neovim";
# Git update function # Git update function
# Prompts for commit message; defaults if empty # Prompts for commit message; defaults if empty
GIT_UPDATE = ''
echo 'Enter commit message: '
read msg
if [ -z "$msg" ]; then
msg="Update NixOS configuration"
fi
git add . && git commit -m "$msg" && git push origin main
'';
}; };