Add git for user

This commit is contained in:
2025-02-26 21:50:57 +01:00
parent c45866e0b0
commit e9c2499304
2 changed files with 22 additions and 0 deletions

View 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 = [
];
}

View File

@@ -16,6 +16,8 @@
# ./nvim.nix # ./nvim.nix
./IDEs ./IDEs
./git
]; ];
nixpkgs = { nixpkgs = {