Files
nixos-config/modules/home/git.nix
2025-10-19 00:25:08 -04:00

24 lines
335 B
Nix

{
pkgs,
...
}:
{
home.packages = with pkgs; [ git-ignore ];
programs = {
git = {
enable = true;
userName = "Eclypsed";
userEmail = "Ec1ypsed@proton.me";
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
lazygit = {
enable = true;
};
};
}