This commit is contained in:
2026-02-23 19:51:37 +01:00
parent e55ae7e6c1
commit e690f58b9a
6 changed files with 64 additions and 25 deletions

View File

@@ -1,7 +1,6 @@
{
pkgs,
full_name,
email,
userConfig,
...
}:
@@ -14,8 +13,8 @@
enable = true;
settings = {
user = {
name = full_name;
email = email;
name = userConfig.fullName;
email = userConfig.email;
};
init.defaultBranch = "master";
push.autoSetupRemote = true;
@@ -23,7 +22,7 @@
};
signing = {
key = email;
key = userConfig.email;
signByDefault = true;
};