diff --git a/apps/default.nix b/apps/default.nix index c181d47..bcd968b 100644 --- a/apps/default.nix +++ b/apps/default.nix @@ -15,6 +15,7 @@ ./gtk.nix ./helix.nix ./jq.nix + ./lazygit.nix ./nushell.nix ./oh-my-posh.nix ./spotifyd.nix diff --git a/apps/firefox/work.nix b/apps/firefox/work.nix index 2573dbb..a76387c 100644 Binary files a/apps/firefox/work.nix and b/apps/firefox/work.nix differ diff --git a/apps/lazygit.nix b/apps/lazygit.nix new file mode 100644 index 0000000..c334563 --- /dev/null +++ b/apps/lazygit.nix @@ -0,0 +1,20 @@ +{ + programs.lazygit = { + enable = true; + settings = { + nerdFontsVersion = "3"; + update.method = "never"; + gui.theme = { + lightTheme = false; + activeBorderColor = ["#a6e3a1" "bold"]; + inactiveBorderColor = ["#cdd6f4"]; + optionsTextColor = ["#89b4fa"]; + selectedLineBgColor = ["#313244"]; + selectedRangeBgColor = ["#313244"]; + cherryPickedCommitBgColor = ["#94e2d5"]; + cherryPickedCommitFgColor = ["#89b4fa"]; + unstagedChangesColor = ["#f38ba8"]; + }; + }; + }; +}