change git config

This commit is contained in:
Frost-Phoenix 2023-11-05 12:59:12 +01:00
parent 811e6a8429
commit 9cc071a545

View file

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