base: add existing config

This commit is contained in:
luxzi 2024-07-24 19:51:43 -04:00
commit f3b5d32942
No known key found for this signature in database
GPG key ID: C90237A70F2FDD53
34 changed files with 437 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ ... }:
{
programs.git = {
enable = true;
userName = "luxzi";
userEmail = "lesson085@gmail.com";
aliases = {
pf = "push --force";
kl = "log --show-signature";
};
signing = {
key = "$HOME/.ssh/luxzi";
};
extraConfig = {
init.defaultBranch = "main";
};
};
}