1
Fork 0
satellite/home/features/cli/lazygit.nix

13 lines
272 B
Nix
Raw Normal View History

{ config, ... }:
{
2024-02-26 12:56:54 +01:00
programs.lazygit = {
enable = true;
settings = {
promptToReturnFromSubprocess = false;
disableStartupPopups = true;
};
2024-02-26 12:56:54 +01:00
};
satellite.persistence.at.state.apps.lazygit.directories = [ "${config.xdg.configHome}/lazygit" ];
2024-02-26 12:56:54 +01:00
}