nix-dotfiles/home-manager/modules/lazygit.nix
2025-07-02 02:12:38 -06:00

23 lines
394 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";}
];
extraConfig = {
credential.helper = "store --file=${config.home.homeDirectory}/nix/.secrets/.git-credentials";
};
};
}