Gitignore

This commit is contained in:
Thomas Avé 2025-01-28 01:20:27 +01:00
parent 534a0f3307
commit 5cf0960459
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ inputs, config, pkgs, ... }:
{ pkgs, ... }:
{
programs.git = {
@ -11,11 +11,13 @@
};
ignores = [
"*.direnv/"
".dmypy.json"
];
extraConfig = {
credentials.helper = "store";
pull.rebase = false;
push.autoSetupRemove = true;
branch.autoSetupMerge = "simple";
init.defaultBranch = "master";
diff.noprefix = true;
color.ui = "auto";