change git config

This commit is contained in:
Frost-Phoenix 2023-11-05 12:24:39 +01:00
parent 58a3f28118
commit 811e6a8429
2 changed files with 19 additions and 3 deletions

View file

@ -1,6 +1,13 @@
{ pkgs, ... }: {
programs.git.enable = true;
programs.git.userName = "Frost-Phoenix";
programs.git.userEmail = "67cyril6767@gmail.com";
programs.git = {
enable = true;
userName = "Frost-Phoenix";
userEmail = "67cyril6767@gmail.com";
};
home.packages = [ pkgs.gh ];
home.configFile."git/config".source = ./config;
}