From 4da372c8ce35d7380eb75e845c1f051486005e80 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Tue, 29 Aug 2023 21:45:25 +0100
Subject: [PATCH] fix(zsh): aliases

---
 system/shared/home-manager.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/system/shared/home-manager.nix b/system/shared/home-manager.nix
index dad3ee1e..11106297 100644
--- a/system/shared/home-manager.nix
+++ b/system/shared/home-manager.nix
@@ -311,9 +311,9 @@ in
       ialias s="secrets"
       ialias secrets="doppler --project \"$(whoami)\" run"
       ialias tag="tag-release"
-      ialias uncommit = "git reset --soft HEAD^";
+      ialias uncommit="git reset --soft HEAD^";
       ialias update="fetch && rebase"
-      ialias wip = "git add . && git commit -m 'wip'";
+      ialias wip="git add . && git commit -m 'wip'";
 
       ialias ls="exa -la"