[dev] Adds more dev tools (git, kubernetes) and meta packages

This commit is contained in:
Drew Haven
2025-02-10 14:44:38 -08:00
parent c7c80c8140
commit fda8ead0f9
8 changed files with 71 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
{ ... }:
{
programs.git = {
enable = true;
aliases = {
"co" = "checkout";
"s" = "status";
"b" = "branch";
"r" = "remote";
"amend" = "commit -a --amend --no-edit";
"c" = "commit -am";
};
extraConfig = {
core = {
pager = "";
};
pull = {
rebase = true;
};
log = {
date = "iso";
};
};
};
}