updating from jeremy's nix config

This commit is contained in:
2025-04-11 13:29:01 -07:00
parent 56a13f4932
commit eb76502381
4 changed files with 99 additions and 339 deletions

18
configs/git.nix Normal file
View File

@@ -0,0 +1,18 @@
{
programs.git = {
enable = true;
config = [
{
user = {
name = "Kyle Isom";
email = "kyle@imap.cc";
};
init = {
defaultBranch = "master";
}
}
{ push = { default = "current"; }; }
];
};
}