From 246dd40b6f413044446776492883257baec4856f Mon Sep 17 00:00:00 2001 From: Tomas Rivera <137088692+Totorile1@users.noreply.github.com> Date: Wed, 4 Mar 2026 11:03:24 +0100 Subject: [PATCH] removed a variable that served nothing and gave an error in the tty --- hosts/laptop/home.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index dc2056d..b990389 100755 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -147,14 +147,6 @@ home.sessionVariables = { EDITOR = "neovim"; # Git update function # 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 - ''; };