21 lines
368 B
Nix
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;
|
|
};
|
|
};
|
|
}
|