dotfiles/home-manager/programs/git.nix

32 lines
772 B
Nix
Raw Normal View History

2024-02-27 02:54:02 +01:00
{ pkgs, ... }:
2023-05-02 22:47:01 +02:00
{
programs.git = {
enable = true;
2024-02-17 02:10:58 +01:00
package = pkgs.gitFull;
lfs.enable = true;
userEmail = "thilo.billerbeck@officerent.de";
userName = "Thilo Billerbeck";
extraConfig = {
color = {
diff = "auto";
status = "auto";
branch = "auto";
interactive = "auto";
ui = true;
pager = true;
2023-05-02 22:47:01 +02:00
};
log = { date = "short"; };
rerere = { enabled = "1"; };
core = {
whitespace = "fix,-indent-with-non-tab,trailing-space,cr-at-eol";
2023-07-21 22:50:24 +02:00
excludesfile = "~/.gitignore";
autocrlf = "input";
};
apply = { whitespace = "nowarn"; };
branch = { autosetuprebase = "always"; };
2023-05-02 22:47:01 +02:00
};
};
2024-02-27 02:54:02 +01:00
programs.git-credential-oauth = { enable = true; };
2023-05-02 22:47:01 +02:00
}