33 lines
508 B
Nix
33 lines
508 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
extraConfig = {
|
|
pull.rebase = true;
|
|
push.autoSetupRemote = true;
|
|
color.ui = "auto";
|
|
init.defaultBranch = "main";
|
|
lfs.enable = true;
|
|
user = {
|
|
name = "Adrian G L";
|
|
email = "adrian@lauterer.it";
|
|
};
|
|
};
|
|
ignores = [
|
|
"*~"
|
|
"*.swp"
|
|
".DS_Store"
|
|
".vscode"
|
|
".aider*"
|
|
".continue*"
|
|
"*__PYCACHE__*"
|
|
"*__pycache__*"
|
|
];
|
|
};
|
|
}
|