mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
Added basic git user config
This commit is contained in:
parent
3f0c292332
commit
40911b6744
1 changed files with 10 additions and 0 deletions
10
modules/git.nix
Normal file
10
modules/git.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.gitAndTools.gitFull;
|
||||||
|
userName = "Nickiel12";
|
||||||
|
userEmail = "nicholasyoungsumner@gmail.com";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue