This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-29 01:53:08 +02:00
parent 43a2bf1fcb
commit 2acb68a89d
6 changed files with 101 additions and 32 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib, system, user, allowed, secrets, ... }:
{ pkgs, lib, user, rice, ... }:
lib.mkIf (user != "tv")
{
home.packages = with pkgs; [
@@ -50,4 +50,20 @@ lib.mkIf (user != "tv")
};
};
};
programs.lazygit = {
enable = true;
settings = {
windowSize = "normal";
gui.theme = with rice.color; {
lightTheme = false;
activeBorderColor = [ border "bold"];
inactiveBorderColor = [ black.bright ];
optionsTextColor = [ blue.base ];
selectedLineBgColor = [ foreground ];
selectedRangeByColor = [ magenta.bright ];
showRandomTip = true;
animateExplosion = true;
};
};
};
}