1
Fork 0
satellite/home/features/cli/lazygit.nix
prescientmoon 366ed55d6f
Disable lazygit popup
It keps popping up over and over again (because of impermanence)
2024-08-30 01:13:01 +02:00

13 lines
272 B
Nix

{ config, ... }:
{
programs.lazygit = {
enable = true;
settings = {
promptToReturnFromSubprocess = false;
disableStartupPopups = true;
};
};
satellite.persistence.at.state.apps.lazygit.directories = [ "${config.xdg.configHome}/lazygit" ];
}