NixOS-Config/modules/home/programs/terminal/git/default.nix
Jimbo 217a464240 Missed in last commit
Add lazygit and remove redundant info from tower
2024-11-19 13:34:29 -05:00

11 lines
185 B
Nix

{ pkgs, config, ... }:
{
programs.git = {
enable = true;
userName = "Jimbo";
userEmail = "jimbo@${config.domains.jim2}";
};
home.packages = with pkgs; [ lazygit ];
}