CrOS/home/crow/common/core/git.nix
2025-10-27 12:07:45 -04:00

30 lines
570 B
Nix

{
# programs.git = {
# enable = true;
# userName = "TheWanderingCrow";
# userEmail = "contact@wanderingcrow.net";
# extraConfig = {
# init = {
# defaultBranch = "main";
# };
# push = {
# autoSetupRemote = true;
# };
# };
# lfs = {
# enable = true;
# skipSmudge = true;
# };
# };
programs.jujutsu = {
enable = true;
settings = {
user = {
email = "contact@wanderingcrow.net";
name = "TheWanderingCrow";
};
ui.paginate = "never";
};
};
}