the refactor continues!

This commit is contained in:
martyTF 2026-04-01 16:00:52 +02:00
parent db2103a37d
commit 90513a119c
21 changed files with 216 additions and 234 deletions

View file

@ -0,0 +1,28 @@
{
config,
lib,
pkgs,
...
}:
{
config = {
programs = {
git = {
enable = true;
settings = {
init = {
defaultBranch = "main";
};
user = {
email = "${config.user.email}";
name = "${config.user.userName}";
};
push = {
autoSetupRemote = true;
};
};
};
};
};
}