Update the rebuild-home script; add alacritty to apps
diff --git a/scripts/rebuild-home.sh b/scripts/rebuild-home.sh
index bee1c4b..8c21034 100755
--- a/scripts/rebuild-home.sh
+++ b/scripts/rebuild-home.sh
@@ -2,7 +2,7 @@
 
 cd "$(dirname ${BASH_SOURCE[0]})/.."
 
-if [[ $(git diff --stat) != '' ]]; then
+if [[ $(git diff --stat HEAD) != '' ]]; then
     read -ep "What did you change?: " changes
     git add .
     /usr/bin/env git commit -am "$changes"
diff --git a/src/apps/personal/alacritty.nix b/src/apps/personal/alacritty.nix
new file mode 100644
index 0000000..f1118a9
--- /dev/null
+++ b/src/apps/personal/alacritty.nix
@@ -0,0 +1,5 @@
+{ pkgs, ... }: {
+    home.packages = with pkgs; [
+        alacritty
+    ];
+}
\ No newline at end of file