From 9b27f664bd5991ce45df543a79ad6d7f9cce75a3 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Wed, 28 May 2025 17:11:50 -0300 Subject: [PATCH] Added lazygit --- home/panotaka/common/core/shell/default.nix | 1 + home/panotaka/common/core/shell/lazygit.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 home/panotaka/common/core/shell/lazygit.nix diff --git a/home/panotaka/common/core/shell/default.nix b/home/panotaka/common/core/shell/default.nix index c65ce41..340fca7 100644 --- a/home/panotaka/common/core/shell/default.nix +++ b/home/panotaka/common/core/shell/default.nix @@ -10,6 +10,7 @@ ./direnv.nix ./eza.nix ./fish.nix + ./lazygit.nix ./rip.nix ./tldr.nix ./zellij.nix diff --git a/home/panotaka/common/core/shell/lazygit.nix b/home/panotaka/common/core/shell/lazygit.nix new file mode 100644 index 0000000..0c6e246 --- /dev/null +++ b/home/panotaka/common/core/shell/lazygit.nix @@ -0,0 +1,7 @@ +{ + programs.lazygit.enable = true; + + home.shellAliases = { + lgit = "lazygit"; + }; +}