mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-16 03:54:11 -05:00
30 lines
536 B
Nix
30 lines
536 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";
|
|
};
|
|
};
|
|
}
|