Remove gitea username from git config

This commit is contained in:
Evie Litherland-Smith 2024-10-30 16:55:59 +00:00
parent ea8e3e2de6
commit 666bd09059

View file

@ -32,25 +32,16 @@
"*.gpg filter=gpg diff=gpg" "*.gpg filter=gpg diff=gpg"
"*.asc filter=gpg diff=gpg" "*.asc filter=gpg diff=gpg"
]; ];
extraConfig = extraConfig = {
let github.user = "pixelifytica";
user = "pixelifytica"; pull.rebase = false;
in init.defaultBranch = "main";
{ merge.conflictstyle = "diff3";
github = { credential.helper = "${package}/bin/git-credential-libsecret";
inherit user; diff = {
}; colorMoved = "default";
gitea = { gpg.textconv = "gpg --no-tty --decrypt";
inherit user;
};
pull.rebase = false;
init.defaultBranch = "main";
merge.conflictstyle = "diff3";
credential.helper = "${package}/bin/git-credential-libsecret";
diff = {
colorMoved = "default";
gpg.textconv = "gpg --no-tty --decrypt";
};
}; };
};
}; };
} }