nix-dotfiles/home-manager/modules/lazygit.nix
2025-11-23 09:18:03 -07:00

23 lines
391 B
Nix

{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
lazygit
git
git-lfs
gh
diff-so-fancy
];
programs.git = {
enable = true;
includes = [
{path = "${config.home.homeDirectory}/nix/.secrets/.git-config";}
];
settings = {
credential.helper = "store --file=${config.home.homeDirectory}/nix/.secrets/.git-credentials";
};
};
}