7 lines
266 B
Nix
7 lines
266 B
Nix
{ config, lib, ... }:
|
|
{
|
|
programs.lazygit.enable = true;
|
|
home.persistence."${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}".directories =
|
|
with lib; with config.home; with config.xdg;
|
|
[ "state/${removePrefix "${homeDirectory}/" stateHome}/lazygit" ];
|
|
}
|