nix-dotfiles/home-manager/modules/lazygit.nix
2025-03-30 03:33:32 -06:00

18 lines
279 B
Nix

{
pkgs,
...
}: {
home.packages = with pkgs; [
lazygit
];
programs.git = {
enable = true;
includes = [
{ path = "./.secrets/.git-config"; }
];
extraConfig = {
credential.helper = "store --file ./.secrets/.git-credentials";
};
};
}