Add git for user
This commit is contained in:
20
home-manager/git/default.nix
Normal file
20
home-manager/git/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
delta.enable = true;
|
||||
|
||||
userName = "Noah Knegt";
|
||||
userEmail = "personal@noahknegt.com";
|
||||
|
||||
extraConfig = {
|
||||
push = {
|
||||
autoSetupRemote = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
imports = [
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user