dotfiles.nix/home-manager/common/programs/git/default.nix

17 lines
265 B
Nix
Raw Normal View History

2023-04-07 07:19:41 +08:00
{ inputs, outputs, lib, config, pkgs, ... }:
{
2023-10-10 19:01:13 +08:00
home.packages = with pkgs; [
lazygit
];
2023-04-07 07:19:41 +08:00
programs.git = {
enable = true;
userName = "sajenim";
userEmail = "its.jassy@pm.me";
2023-04-28 22:50:21 +08:00
extraConfig = {
init.defaultBranch = "main";
};
2023-04-07 07:19:41 +08:00
};
}