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 = { programs.git = {
@ -11,11 +11,13 @@
}; };
ignores = [ ignores = [
"*.direnv/" "*.direnv/"
".dmypy.json"
]; ];
extraConfig = { extraConfig = {
credentials.helper = "store"; credentials.helper = "store";
pull.rebase = false; pull.rebase = false;
push.autoSetupRemove = true; push.autoSetupRemove = true;
branch.autoSetupMerge = "simple";
init.defaultBranch = "master"; init.defaultBranch = "master";
diff.noprefix = true; diff.noprefix = true;
color.ui = "auto"; color.ui = "auto";