added git settings

This commit is contained in:
Richie Cahill 2024-04-10 18:15:58 -04:00
parent 98c51a0aab
commit e12cf4bc74
2 changed files with 11 additions and 1 deletions

View File

@ -1,7 +1,10 @@
{ pkgs, ... }:
# home manager
{
imports = [ ./home/sshconfig.nix ];
imports = [
./home/sshconfig.nix
./home/git.nix
];
programs.zsh.enable = true;
home = {

View File

@ -0,0 +1,7 @@
{
programs.git = {
enable = true;
userEmail = "Richie@tmmworkshop.com";
userName = "Richie Cahill";
};
}