Allow typing "q" to exit the terminal
diff --git a/modules/zsh.nix b/modules/zsh.nix
index 36c4cc5..1b6a3d2 100644
--- a/modules/zsh.nix
+++ b/modules/zsh.nix
@@ -66,6 +66,7 @@
     home = {
       shellAliases = {
         ":q" = "exit";
+        "q" = "exit";
       };
       packages = [pkgs.fzf];
     };