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