From 3841505317a7d2148dcaa8f38617c8d9093478e7 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Fri, 5 Jan 2024 15:20:58 -0500 Subject: [PATCH] Add git alias to open with GitKraken --- modules/home-manager/common/all-gui.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/home-manager/common/all-gui.nix b/modules/home-manager/common/all-gui.nix index 2551d30..23bc178 100644 --- a/modules/home-manager/common/all-gui.nix +++ b/modules/home-manager/common/all-gui.nix @@ -3,6 +3,9 @@ # nothing here right now ]; programs = { + git.aliases = { + kraken = "!gitkraken -p $(cd \"\${1:-.}\" && git rev-parse --show-toplevel)"; + }; vscode = { enable = true; };