separated programs directory

This commit is contained in:
John Lancaster
2026-03-08 13:31:33 -05:00
parent f7735089df
commit b96b9b2409
17 changed files with 17 additions and 43 deletions

View File

@@ -0,0 +1,18 @@
{
flake.homeModules.git = { config, lib, ... }:
{
programs.git = {
enable = true;
settings = {
credential.helper = "store --file ~/.git-credentials";
init.defaultBranch = "main";
push.autoSetupRemote = true;
};
};
programs.lazygit = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
};
}