Update github and gitea username in config

This commit is contained in:
Evie Litherland-Smith 2024-03-08 06:50:40 +00:00
parent f048d05850
commit 88522b265b

View file

@ -18,9 +18,11 @@
syntax-theme = with config.programs; lib.mkIf bat.enable bat.config.theme; syntax-theme = with config.programs; lib.mkIf bat.enable bat.config.theme;
}; };
}; };
extraConfig = { extraConfig = let
github.user = "elitherl"; user = "pixelifytica";
gitea.user = "xenia"; in {
github = {inherit user;};
gitea = {inherit user;};
pull.rebase = false; pull.rebase = false;
init.defaultBranch = "main"; init.defaultBranch = "main";
merge.conflictstyle = "diff3"; merge.conflictstyle = "diff3";