Files
dendritic/modules/home-manager/git.nix
John Lancaster c62545221c initial commit
2026-02-16 09:14:16 -06:00

14 lines
287 B
Nix

{
flake.homeModules.git = { config, lib, ... }:
{
programs.git = {
enable = true;
settings = {
credential.helper = "store --file ~/.git-credentials";
init.defaultBranch = "main";
push.autoSetupRemote = true;
};
};
};
}