Add git configuration

This commit is contained in:
RealStickman 2023-05-01 13:32:34 +02:00
parent e3a19e7446
commit 666de7a91d

View File

@ -80,6 +80,23 @@ in
};
};
# git configuration
programs.git.extraConfig = {
init = {
defaultBranch = "main";
};
user = {
name = "RealStickman";
email = "mrc@frm01.net";
};
gitlab = {
user = "RealStickman";
};
github = {
user = "RealStickman";
};
};
services.mako.enable = true;
};
}