git: ship .gitconfig
This commit is contained in:
parent
f355e3c78b
commit
c31106951b
@ -5,6 +5,7 @@
|
||||
home-manager.users.jake.home.stateVersion = "22.11";
|
||||
|
||||
imports = [
|
||||
./git.nix
|
||||
./tmux/default.nix
|
||||
];
|
||||
|
||||
|
22
modules/home/git.nix
Normal file
22
modules/home/git.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ pkgs, lib, config, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.jake.programs.git = {
|
||||
enable = true;
|
||||
extraConfig = {
|
||||
user = {
|
||||
email = "jake@hillion.co.uk";
|
||||
name = "Jake Hillion";
|
||||
};
|
||||
pull = {
|
||||
rebase = true;
|
||||
};
|
||||
merge = {
|
||||
conflictstyle = "diff3";
|
||||
};
|
||||
init = {
|
||||
defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user