config.nix/modules/development/git.nix
martyTF db5366102b forgor to stage changes
but git management in vscodium do be fire ngl
2025-12-16 16:51:22 +01:00

27 lines
382 B
Nix

{
config,
lib,
pkgs,
...
}:
{
programs = {
git = {
enable = true;
config = {
init = {
defaultBranch = "main";
};
user = {
email = "marty@marty.tf";
name = "marty";
};
push = {
autoSetupRemote = true;
};
credential.helper = "libsecret";
};
};
};
}