dotfiles/home-manager/git.nix

31 lines
459 B
Nix
Raw Normal View History

2024-01-16 21:08:19 +00:00
{ config, lib, pkgs, ... }:
{
programs.gh = {
enable = true;
extensions = [
pkgs.gh-eco
];
};
programs.gh-dash = {
enable = true;
};
programs.git = {
enable = true;
userName = "Chris W";
userEmail = "cawatson1993@gmail.com";
extraConfig = {
pull = {
rebase = false;
};
init = {
defaultBranch = "main";
};
core = {
fileMode = false;
};
};
};
}