Files
nix/hosts/common/configs/user/console/lazygit/default.nix
2025-09-26 11:32:29 +00:00

21 lines
368 B
Nix

{ user, home }:
{ ... }:
{
environment.persistence."/persist/state"."${home}/.local/state/lazygit" = { };
home-manager.users.${user}.programs.lazygit = {
enable = true;
settings = {
gui = {
showBottomLine = false;
nerdFontsVersion = "3";
animateExplosion = false;
};
disableStartupPopups = true;
};
};
}