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